summaryrefslogtreecommitdiff
path: root/js/codeq/problem_list.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/codeq/problem_list.js')
-rw-r--r--js/codeq/problem_list.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/codeq/problem_list.js b/js/codeq/problem_list.js
index cc9e716..3fb9653 100644
--- a/js/codeq/problem_list.js
+++ b/js/codeq/problem_list.js
@@ -251,12 +251,13 @@
var language = data.language;
jqScreen.html(data.html);
codeq.tr.translateDom(jqScreen);
- jqScreen.find('a').on('click', function () {
+ jqScreen.find('a').on('click', function (e) {
var index = +$(this).attr('class').split(' ')[0].split('-')[1],
ref = data.refs[index];
+ e.preventDefault();
if (!ref) {
codeq.log.error('Clicked on a problem link having erroneous index: ' + index);
- return false;
+ return;
}
codeq.wait(
Q.all([
@@ -274,7 +275,6 @@
alert('Failed to obtain the problem definition: ' + reason);
})
.done();
- return false;
});
},