Modify ↓
Ticket #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: | |
| Blocking: | Blocked by: |
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
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Duplicate of #2153 .