summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-04-25 08:58:32 +0200
committerTimotej Lazar <timotej.lazar@fri.uni-lj.si>2016-04-25 08:58:32 +0200
commit28316a2665f2c40b03a638e54dfdab925ccf4623 (patch)
treec340c9840cecf26795266722a184d047a538638b
parenta2ac828e8b4112d4c62665d60e37222ca646b6b2 (diff)
Add survey link for the Prolog hints experiment
… revert in two weeks.
-rw-r--r--js/codeq/problem_list.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/js/codeq/problem_list.js b/js/codeq/problem_list.js
index 7f1343d..a281afb 100644
--- a/js/codeq/problem_list.js
+++ b/js/codeq/problem_list.js
@@ -227,6 +227,16 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */
// title: HTML structure for "name" and "desc"
html.push('<h1 class="language-title" ', ta(langDict.name), '></h1><hr>');
html.push('<div class="language-description" ', ta(langDict.description), '></div>');
+ if (li === 'prolog') {
+ for (i = 0; i < codeq.experiments.length; i++) {
+ if (codeq.experiments[i]['id'] == 'prolog_hints') {
+ html.push('<div><a target="_blank" href="https://ailab.si/codeq-survey.php' +
+ '?group=' + codeq.experiments[i]['group'] +
+ '&check=' + $('#profile-username').text().slice(-1) +
+ '">Izpolni anketo o CodeQ.</a></div>');
+ }
+ }
+ }
// content: problem directory
for (i = 0; i < groups.length; i++) {