summaryrefslogtreecommitdiff
path: root/js/codeq/hint.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/codeq/hint.js')
-rw-r--r--js/codeq/hint.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/codeq/hint.js b/js/codeq/hint.js
index 0c4b2f2..b869d99 100644
--- a/js/codeq/hint.js
+++ b/js/codeq/hint.js
@@ -1,5 +1,5 @@
/* CodeQ: an online programming tutor.
- Copyright (C) 2015 UL FRI
+ Copyright (C) 2015-2017 UL FRI
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU Affero General Public License as published by the Free
@@ -258,7 +258,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
// highlight given range in the editor
var mark = addMark(hint.start, hint.end, style);
- if (!template) return;
// execute templates for all languages
for (i = langs.length - 1; i >= 0; i--) {
@@ -268,8 +267,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
translations[lang] = codeq.template.process(content, templatePath, args);
}
else {
- translations[lang] = 'No translation in ' + lang + ' available for popup hint ' + hint.id;
- codeq.log.error(translations[lang]);
+ // any missing translation → no popup
+ // TODO support highlight-only hints instead
+ return;
}
}
// construct the wrapper element for the translation mechanism