Changes between Initial Version and Version 1 of Ticket #11013
- Timestamp:
- 12/13/11 16:50:10 (18 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #11013
- Property Keywords 1.8-discuss added
- Property Priority changed from undecided to low
- Property Component changed from unfiled to ajax
- Property Milestone changed from None to 1.8
-
Ticket #11013 – Description
initial v1 1 1 The async option will allow, if set to false, to make synchronous ajax requests. 2 2 3 It is the worst possible way to make ajax requests (it hangs the javascript VM), it also makes it impossible to implement Deferreds in a truly asynchronous (because we cannot assume ajax is always asynchronous).3 It is the worst possible way to make ajax requests (it hangs the javascript VM), it also makes it impossible to implement Deferreds in a truly asynchronous fashion (because we cannot assume ajax is always asynchronous). 4 4 5 5 Sadly, this synchronous possibility is used internally in jQuery in order to execute script tags with src attributes in html fragments: https://github.com/jquery/jquery/blob/master/src/manipulation.js#L350
