Side navigation
#5307 closed bug (invalid)
Opened September 30, 2009 08:57AM UTC
Closed September 30, 2009 09:16PM UTC
ie8 problem
Reported by: | sjorsvanleeuwen | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | 1.4 |
Component: | ajax | Version: | 1.3.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
in ie8 jquery hangs at startup at line 3517 (uncompressed stable release 3.1.2).
I made a small workaround by putting a try catch around the else statement like:
if( s.username ) {
xhr.open(type, s.url, s.async, s.username, s.password);
} else {
try {
xhr.open(type, s.url, s.async);
} catch(e) {}
}
It works for now because i dont use the above code but it would be nice if it can be fixed :)
Attachments (0)
Change History (1)
Changed September 30, 2009 09:16PM UTC by comment:1
component: | unfilled → ajax |
---|---|
resolution: | → invalid |
status: | new → closed |
We're definitely going to need a full test case in order to diagnose what's going on here. If you have a page that we can look at we would definitely appreciate it.