From 10df465c0f20a74194add4cf7ac5188841b2d5d3 Mon Sep 17 00:00:00 2001 From: theropodmusings Date: Mon, 19 Jun 2017 09:46:26 +0800 Subject: [PATCH] Add 'https:' to jquery path to make loading from cdn work --- www/js/app.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/js/app.js b/www/js/app.js index 54c17e8..907934c 100644 --- a/www/js/app.js +++ b/www/js/app.js @@ -1,12 +1,12 @@ // Place third party dependencies in the lib folder // // Configure loading modules from the lib directory, -// except 'app' ones, +// except 'app' ones, requirejs.config({ "baseUrl": "js/lib", "paths": { "app": "../app", - "jquery": "//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min" + "jquery": "https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min" } });