Changeset 5604
- Timestamp:
- 05/15/08 13:45:09 (7 months ago)
- Files:
-
- 1 modified
-
trunk/jquery/src/ajax.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/jquery/src/ajax.js
r5600 r5604 277 277 278 278 // Open the socket 279 xml.open(s.type, s.url, s.async, s.username, s.password); 279 // Passing null username, generates a login popup on Opera (#2865) 280 if( s.username ) 281 xml.open(s.type, s.url, s.async, s.username, s.password); 282 else 283 xml.open(s.type, s.url, s.async); 280 284 281 285 // Need an extra try/catch for cross domain requests in Firefox 3
