IE7 XHR requests fail when gadgets contain a <base href="..."> tag
------------------------------------------------------------------
Key: SHINDIG-1194
URL: https://issues.apache.org/jira/browse/SHINDIG-1194
Project: Shindig
Issue Type: Bug
Components: Javascript
Affects Versions: 1.1-BETA3
Reporter: Paul Lindner
XmlHttpRequest on IE7 is broken in some subtle ways. One example is a gadget
that uses it's own <base href="..."> tag. In this case the same-source checks
fail.
We should use the activex version on IE7 if available, similar to the way
jquery works:
xhr:function(){
return window.ActiveXObject ? new
ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
},
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.