From a0e539d6ca023e88f6277c484157f9e14f5f5d73 Mon Sep 17 00:00:00 2001 From: Jon Atkins Date: Wed, 25 Feb 2015 13:34:56 +0000 Subject: [PATCH] jquery: update to the latest version available on google --- code/boot.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/boot.js b/code/boot.js index 98797f09..172243fb 100644 --- a/code/boot.js +++ b/code/boot.js @@ -692,8 +692,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/2.1.1/jquery.min.js'; -var JQUERYUI = '//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js'; +var JQUERY = '//ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js'; +var JQUERYUI = '//ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js'; // after all scripts have loaded, boot the actual app load(JQUERY).then(JQUERYUI).thenRun(boot);