aboutsummaryrefslogtreecommitdiffstats
path: root/www/js/app.js
diff options
context:
space:
mode:
Diffstat (limited to 'www/js/app.js')
-rw-r--r--www/js/app.js8
1 files changed, 6 insertions, 2 deletions
diff --git a/www/js/app.js b/www/js/app.js
index 9e8ced1..61ee590 100644
--- a/www/js/app.js
+++ b/www/js/app.js
@@ -340,7 +340,9 @@ var tpl = {
FMS.checkOnlineStatus();
FMS.loadCurrentDraft();
FMS.checkLoggedInStatus();
- FMS.setupHelp();
+ if (!CONFIG.HELP_DISABLED) {
+ FMS.setupHelp();
+ }
Backbone.history.start();
if ( navigator && navigator.splashscreen ) {
@@ -348,7 +350,9 @@ var tpl = {
} else {
$('#load-screen').hide();
}
- $('#display-help').show();
+ if (!CONFIG.HELP_DISABLED) {
+ $('#display-help').show();
+ }
});
}
});