Opened 14 years ago
Closed 13 years ago
#4341 closed bug (duplicate)
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
Note: See
TracTickets for help on using
tickets.
Duplicate of #2153 .