Side navigation
#4341 closed bug (duplicate)
Opened March 12, 2009 05:01PM UTC
Closed October 19, 2009 01:18AM UTC
XMLHttpRequest has async always set to true
| Reported by: | gigigan | Owned by: | |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.4 |
| Component: | build | Version: | 1.3.2 |
| Keywords: | XMLHttpRequest sync async | Cc: | |
| Blocked by: | Blocking: |
Description
On jquery/build/runtest/env.js
line 574
if (async)
this.async = true;
should be
if (async === false)
this.async = false;
because the default value is true anyway
Attachments (0)
Change History (1)
Changed October 19, 2009 01:18AM UTC by comment:1
| resolution: | → duplicate |
|---|---|
| status: | new → closed |
Duplicate of #2153 .