From 36bed265d51ec61b5f58ff6e470ee1d9ec2e0ff2 Mon Sep 17 00:00:00 2001 From: ansuz Date: Wed, 24 Feb 2021 13:44:55 +0530 Subject: [PATCH] reenable surveyURL in dropdown menu --- www/common/common-ui-elements.js | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/www/common/common-ui-elements.js b/www/common/common-ui-elements.js index 50c4b34ee..361265df5 100644 --- a/www/common/common-ui-elements.js +++ b/www/common/common-ui-elements.js @@ -1709,21 +1709,7 @@ define([ }, }); } -/* - if (AppConfig.surveyURL) { - options.push({ - tag: 'a', - attributes: { - 'class': 'cp-toolbar-survey fa fa-graduation-cap' - }, - content: h('span', Messages.survey), - action: function () { - Common.openUnsafeURL(AppConfig.surveyURL); - Feedback.send('SURVEY_CLICKED'); - }, - }); - } -*/ + options.push({ tag: 'a', attributes: { @@ -1780,6 +1766,20 @@ define([ }); } + if (AppConfig.surveyURL) { + options.push({ + tag: 'a', + attributes: { + 'class': 'cp-toolbar-survey fa fa-graduation-cap' + }, + content: h('span', Messages.survey), + action: function () { + Common.openUnsafeURL(AppConfig.surveyURL); + Feedback.send('SURVEY_CLICKED'); + }, + }); + } + options.push({ tag: 'hr' }); // Add login or logout button depending on the current status if (priv.loggedIn) {