Browse Source

Remove HTTPS URL rewriting for older IE.

This code was breaking loading data over HTTPS in IE9/10. Issue noticed loading data from Google Doc URL with Timeline.js under HTTPS.
pull/706/head
Chris Davis 10 years ago
parent
commit
6bde88dc92
  1. 15
      source/js/Core/Core/VMM.Library.js

15
source/js/Core/Core/VMM.Library.js

@ -131,22 +131,11 @@ if(typeof VMM != 'undefined') {
}); });
/* CHECK FOR IE /* CHECK FOR IE
================================================== */ ================================================== */
// Leaving for posterity - removed previous HTTPS url rewriting that was breaking IE9/10 loading data over HTTPS
if ( VMM.Browser.browser == "Explorer" && parseInt(VMM.Browser.version, 10) >= 7 && window.XDomainRequest) { if ( VMM.Browser.browser == "Explorer" && parseInt(VMM.Browser.version, 10) >= 7 && window.XDomainRequest) {
trace("IE JSON"); trace("IE JSON");
var ie_url = url;
if (ie_url.match('^http://')){
return jQuery.getJSON(ie_url, data, callback);
} else if (ie_url.match('^https://')) {
ie_url = ie_url.replace("https://","http://");
return jQuery.getJSON(ie_url, data, callback);
} else {
return jQuery.getJSON(url, data, callback);
}
} else {
return jQuery.getJSON(url, data, callback);
} }
return jQuery.getJSON(url, data, callback);
} }
} }

Loading…
Cancel
Save