Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
jquery ajax:
fixed #2865 and
#2570. Not passing username to xml.open …
…if it's null, or it open a login popup on some Opera's.
- Loading branch information
Showing
with
5 additions
and
1 deletion.
-
+5
−1
src/ajax.js
There are no files selected for viewing
|
|
@@ -276,7 +276,11 @@ jQuery.extend({ |
|
|
var xml = window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest(); |
|
|
|
|
|
// Open the socket |
|
|
xml.open(s.type, s.url, s.async, s.username, s.password); |
|
|
// Passing null username, generates a login popup on Opera (#2865) |
|
|
if( s.username ) |
|
|
xml.open(s.type, s.url, s.async, s.username, s.password); |
|
|
else |
|
|
xml.open(s.type, s.url, s.async); |
|
|
|
|
|
// Need an extra try/catch for cross domain requests in Firefox 3 |
|
|
try { |
|
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.