jaubourg
|
485fa0c42a
|
Makes sure options.context is used as the context for global ajax events only if it's a DOM node.
|
2011-01-31 17:40:26 +01:00 |
|
Anton M
|
389c099df6
|
Fixes #7568. Follow-up fix for #5862. Objects with a length property weren't serialized properly by jQuery.param.
|
2011-01-31 15:58:27 +01:00 |
|
jaubourg
|
4e97543051
|
Adds an invert method to promises that returns a "inverted" promise that is resolved when the underlying deferred is rejected and rejected when the underlying deferred is resolved.
|
2011-01-31 14:49:14 +01:00 |
|
jeresig
|
749d41f7de
|
Rename jQuery.subclass() to jQuery.sub().
|
2011-01-31 08:21:42 -05:00 |
|
jaubourg
|
91ca71daaa
|
Ensures dataTypeExpressions are lowercased for prefilters and transports registrations.
|
2011-01-31 10:13:54 +01:00 |
|
jaubourg
|
85a195c6d5
|
Fixes #8082. Text to script converter now returns text. Unit test added.
|
2011-01-29 01:39:22 +01:00 |
|
jaubourg
|
b9f2131a9d
|
Fixes potential collisions between jsonp requests from different jQuery instances by prefixing the jsonp callback name with the jQuery expando rather than with "jsonp".
|
2011-01-29 01:25:27 +01:00 |
|
Colin Snover
|
0a0cff9d29
|
Use the original element/fragment as the last item to be appended to the document instead of the first in order to prevent missing elements when appending to multiple elements. Fixes #8070.
|
2011-01-28 10:55:39 -06:00 |
|
jaubourg
|
bbd3f4f3fe
|
Compatibility fixes in ajax: exceptions are no longer promoted to strings before being given to callbacks. Updated misleading comment in conversion code.
|
2011-01-28 17:08:46 +01:00 |
|
Digitalxero
|
e00f74c43b
|
Make sure subclass is a proper subclass not just subclassing the fn methods. Fixes #7979.
|
2011-01-27 13:35:06 -05:00 |
|
jaubourg
|
7f95a730e5
|
Merge branch 'master' of github.com:jquery/jquery
|
2011-01-27 00:59:11 +01:00 |
|
jaubourg
|
7d75ea950e
|
Actually does what bab8079593 promised: passes the jXHR as the third argument of prefilters and transport factories. Comitted for completness even if if backs this out in the end and only land in 1.5.1.
|
2011-01-27 00:58:31 +01:00 |
|
gnarf
|
ab1d9a8a2c
|
Remove unneeded and confusing variable definition for better readability.
|
2011-01-27 00:23:08 +01:00 |
|
jaubourg
|
bab8079593
|
Passes jXHR object as third argument of prefilters and transport factories.
|
2011-01-26 17:37:08 +01:00 |
|
jaubourg
|
d7d64713a7
|
Fixes #5866. Issue number in previous commit was wrong both in comments and commit message. See 0e5b341cc0 for previous commit.
|
2011-01-26 01:45:00 +01:00 |
|
jaubourg
|
0e5b341cc0
|
Fixes #5856. Adds document protocol at the beginning of URLs without protocol (thanks go to skrings for the initial pull request). Simplifies cross-domain detection regexp and logic as a consequence. Also took the opportunity to remove an unused variable. Unit test added.
|
2011-01-26 01:36:05 +01:00 |
|
jaubourg
|
325dcdc2ab
|
Fixes #8054 by reverting feature enhancement 5812 (4920). Regexps no longer searches for %3F in url or data to find jsonp callback placeholders.
|
2011-01-26 00:55:39 +01:00 |
|
jaubourg
|
5ca8f0617f
|
Reworks how values of parameters passed to error callbacks are determined. Fixes #8050.
|
2011-01-25 16:08:19 +01:00 |
|
Rick Waldron
|
8d050558d3
|
#8044 Removes unnec. rnonword var
|
2011-01-25 03:52:17 +01:00 |
|
jeresig
|
6fb3998681
|
Updating the year in the header.
|
2011-01-24 16:45:29 -05:00 |
|
jaubourg
|
33de9c5597
|
Makes prefilters and transport inspection more robust and uses better variable names for readability.
|
2011-01-24 04:22:46 +01:00 |
|
jaubourg
|
02ca45573b
|
Revised internal implementation of ajaxPrefilter() and ajaxTransport(). Everything is shorter and more efficient now. Also fixes a couple spacing issues that remained.
|
2011-01-23 22:03:24 +01:00 |
|
jaubourg
|
ee22c8b34b
|
More code style fixes.
|
2011-01-23 20:46:09 +01:00 |
|
jaubourg
|
dd5bf42122
|
Apply JQuery Core Style Guidelines to ajax.js and ajax/*.js,
|
2011-01-23 05:51:41 +01:00 |
|
jaubourg
|
30082d9eba
|
Fixes some coding style issues in core.js. In jQuery.fn.ready(), simplifies the whole code (for better backward compatibility) and removes redefinition of the function itself (in order not to clash with proxying). Also, in jQuery.when(), removes unnecessary closure and early rejection test and makes use of then instead of done/fail (better interoperability).
|
2011-01-23 05:01:36 +01:00 |
|
jaubourg
|
bea4815294
|
Re-organizes ajax.js: prefilters and transports are no longer stored in ajaxSettings (their structure is not handled correctly by extend() and was causing some overhead when constructing the final options map in ajax()); base function for ajaxPrefilter and ajaxTransport has been renamed and split in two (one for inspection, one for addition); response/dataType determination and data conversion logics have been externalized from the ajax() internal callback; data conversion no longer sets responseXXX fields; some minor re-formatting and simplifications.
|
2011-01-22 04:45:20 +01:00 |
|
rwldrn
|
f1bd0cfc4d
|
Merge branch '8017lint' of https://github.com/rwldrn/jquery into 8017lint
|
2011-01-22 00:41:42 +01:00 |
|
jeresig
|
1922f311a3
|
Merge branch 'fix-7398-frameset-docs' of https://github.com/dmethvin/jquery into dmethvin-fix-7398-frameset-docs
|
2011-01-21 11:22:55 -05:00 |
|
jeresig
|
61e80c55df
|
Merge branch '8013p' of https://github.com/rwldrn/jquery into rwldrn-8013p
|
2011-01-21 11:20:05 -05:00 |
|
Dave Methvin
|
ad0ebf00ab
|
Don't do body-related feature tests on frameset docs that have no body. Fixes #7398.
|
2011-01-21 09:51:30 -05:00 |
|
jeresig
|
328a86f9a0
|
Revert "Make sure that focusin/focusout bubbles in non-IE browsers." This was causing problems with the focusin event, see: #7340.
This reverts commit 88068f82c1 .
Conflicts:
src/event.js
test/unit/event.js
|
2011-01-21 09:24:09 -05:00 |
|
jaubourg
|
dc2e7317a9
|
Replaces "text in-between" technique with a full-fledged one-level transitive search for converters (unit tests added). Also cleans up auto dataType determination and adds converter checks in order to guess the best dataType possible.
|
2011-01-21 03:58:28 +01:00 |
|
rwldrn
|
6458885881
|
Cleaned up; fixes per review
|
2011-01-20 15:25:04 -05:00 |
|
John Resig
|
2e2d5e9db5
|
Merge branch 'fix-7853-add-context' of https://github.com/dmethvin/jquery into dmethvin-fix-7853-add-context
|
2011-01-20 14:51:30 -05:00 |
|
John Resig
|
c97b6ee36a
|
Merge branch 'master' of https://github.com/scottjehl/jquery into scottjehl-master
|
2011-01-20 14:39:57 -05:00 |
|
rwldrn
|
49cd9c66bf
|
cloneCopyEvent; jQuery.clone() review
|
2011-01-20 14:27:02 -05:00 |
|
jaubourg
|
3dbd600e19
|
Moves determineResponse logic into main ajax callback. Puts responseXXX fields definitions into ajaxSettings.
|
2011-01-20 19:40:51 +01:00 |
|
jaubourg
|
8ad2b31ff6
|
Removes misleading comment.
|
2011-01-20 18:50:47 +01:00 |
|
jeresig
|
ea5ce8c2a9
|
Merge branch 'master' of github.com:jquery/jquery
|
2011-01-20 11:58:52 -05:00 |
|
jeresig
|
e4d0168893
|
Bring jQuery('#id') and jQuery('body') logic back into core (while leaving it in Sizzle at the same time). Was causing too much of a performance hit to leave it all to Sizzle.
|
2011-01-20 11:58:44 -05:00 |
|
jaubourg
|
f2b0c77dc8
|
Merge branch 'master' of github.com:jquery/jquery
|
2011-01-20 17:52:10 +01:00 |
|
jaubourg
|
a7cb93bee5
|
Renames Deferred's fire and fireReject methods as resolveWith and rejectWith respectively.
|
2011-01-20 17:51:57 +01:00 |
|
jeresig
|
0f6c7830ce
|
Fix typo in regex tweak from previous commit.
|
2011-01-20 11:46:50 -05:00 |
|
jaubourg
|
ef86694ada
|
Renames determineDataType as determineResponse. Makes it more generic as a first step into integrating the logic into the main ajax done callback. Also fixes some comments in ajax/xhr.js.
|
2011-01-20 17:38:21 +01:00 |
|
jeresig
|
c475222bfb
|
Move jQuery(...) selector speed-up logic into Sizzle(...) qSA handling. Additionally add in a new catch for Sizzle('.class') (avoid using qSA and use getElementsByClassName instead, where applicable).
|
2011-01-20 11:34:35 -05:00 |
|
jaubourg
|
3e1d3d0f21
|
Revises the way arguments are handled in ajax.
|
2011-01-20 16:22:36 +01:00 |
|
jaubourg
|
9ab00a712f
|
Makes sure statusCode callbacks are ordered in the same way success and error callbacks are. Unit tests added.
|
2011-01-20 15:39:30 +01:00 |
|
jaubourg
|
64e1cdbb95
|
Cleans up and simplifies code shared by ajaxPrefilter and ajaxTransport. Removes chainability of ajaxSetup, ajaxPrefilter and ajaxTransport. Also makes sure context is handled properly by ajaxSetup (unit test added).
|
2011-01-20 04:12:15 +01:00 |
|
scottjehl
|
2b64b1db68
|
Revised the Nokia support fallback. It turns out that Nokia supports the documentElement property but does not define document.compatMode. Adding this third fallback allows Nokia to run jQuery error-free and return proper values for window width and height.
|
2011-01-19 12:40:32 -05:00 |
|
jaubourg
|
44f3a1b405
|
Moves things around to make jsLint happier.
|
2011-01-19 18:36:42 +01:00 |
|