Browse Source

Fixed issue in Chrome where no content getJSON request fails if scheme is NOT https

pull/12/head
Martin Widmann 13 years ago
parent
commit
404342862e
  1. 2
      source/js/timeline.js

2
source/js/timeline.js

@ -1971,7 +1971,7 @@ if(typeof VMM != 'undefined' && typeof VMM.Timeline == 'undefined') {
} }
xdr.send(); xdr.send();
} else { } else {
VMM.getJSON(_url, VMM.Timeline.DataObj.model_GoogleSpreadsheet.buildData); VMM.getJSON( "https:" + _url, VMM.Timeline.DataObj.model_GoogleSpreadsheet.buildData);
} }
}, },

Loading…
Cancel
Save