From dbc6ef18dfb8e22cf5a85b219c0cb87ed1e92f55 Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Fri, 19 Jul 2013 22:42:57 +0100 Subject: [PATCH] bump jquery versions in use, to match those already included on the stock intel site (matching stock versions prevents multiple instances being loaded, which might cause issues and/or slow things down) --- code/boot.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/boot.js b/code/boot.js index 8c190770..47e3c2b4 100644 --- a/code/boot.js +++ b/code/boot.js @@ -520,8 +520,8 @@ try { console.log('Loading included JS now'); } catch(e) {} try { console.log('done loading included JS'); } catch(e) {} //note: no protocol - so uses http or https as used on the current page -var JQUERY = '//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js'; -var JQUERYUI = '//ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js'; +var JQUERY = '//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js'; +var JQUERYUI = '//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js'; // after all scripts have loaded, boot the actual app load(JQUERY).then(JQUERYUI).thenRun(boot);