From 404342862eba690c4612a97fb7d68cd80edb5050 Mon Sep 17 00:00:00 2001 From: Martin Widmann Date: Fri, 30 Mar 2012 12:20:34 +0200 Subject: [PATCH] Fixed issue in Chrome where no content getJSON request fails if scheme is NOT https --- source/js/timeline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/js/timeline.js b/source/js/timeline.js index e84d498..f1ed443 100755 --- a/source/js/timeline.js +++ b/source/js/timeline.js @@ -1971,7 +1971,7 @@ if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') { } xdr.send(); } else { - VMM.getJSON(_url, VMM.Timeline.DataObj.model_GoogleSpreadsheet.buildData); + VMM.getJSON( "https:" + _url, VMM.Timeline.DataObj.model_GoogleSpreadsheet.buildData); } },