From 858c5c2b43ce16f6d4b388725ef2d7a95e4a1986 Mon Sep 17 00:00:00 2001 From: Sebastien SAUVAGE Date: Fri, 1 Mar 2013 22:21:10 +0100 Subject: Added option to disable jQuery and heavy javascript Shaarli uses light Javascript in its normal operation, and some jQuery for some features (autocomplete in tags, QR-Code popup...). jQuery can be slow on small computers. An option has been added in configuration screen to disable javascript features which are hard on CPU. (Note that the Picture Wall is awfully heavy *without* jQuery.) (Side note: A *LOT* of users want Shaarli to work without javasript at all, if possible. That's why I try to use as few javascript as possible: It keeps Shaarli pages fast.) --- tpl/page.footer.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tpl/page.footer.html') diff --git a/tpl/page.footer.html b/tpl/page.footer.html index 7fe15017..13b566ae 100644 --- a/tpl/page.footer.html +++ b/tpl/page.footer.html @@ -8,7 +8,7 @@ {/if} -{if="$GLOBALS['config']['OPEN_SHAARLI'] || isLoggedIn()"} +{if="($GLOBALS['config']['OPEN_SHAARLI'] || isLoggedIn()) && empty($GLOBALS['disablejquery'])"}