aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | | | | Update jQuery.data to use jQuery.noop for toJSON hack instead of an ↵Colin Snover2011-02-141-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | additional superfluous function.
* | | | | | | | | | | Hide metadata when serializing JS objects using JSON.stringify via a toJSON ↵Colin Snover2011-02-141-3/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | hack. Fixes #8108.
* | | | | | | | | | | Add missing semicolon.Anton M2011-02-141-1/+1
| | | | | | | | | | |
* | | | | | | | | | | Merge branch '8099' of https://github.com/rwldrn/jquery into rwldrn-8099jeresig2011-02-141-3/+28
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Bug #8099 - Updates per reviewrwldrn2011-01-311-9/+13
| | | | | | | | | | | |
| * | | | | | | | | | | Bug #8099 - Always restore to correct display value based on element's ↵rwldrn2011-01-311-3/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | expected default display
* | | | | | | | | | | | Merge branch 'fix8033' of https://github.com/SlexAxton/jquery into ↵jeresig2011-02-142-1/+2
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SlexAxton-fix8033
| * | | | | | | | | | | | Moved jQuery global leak to end of file so accidental gEBCN overrides in ↵Alex Sexton2011-01-232-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | prototype don't get caught up in confusion. Fixed tests to reference jQuery variable instead of $ (best practice). Fixes #8033
* | | | | | | | | | | | | Fix breaking test in Chrome.Anton M2011-02-141-2/+2
| | | | | | | | | | | | |
* | | | | | | | | | | | | Don't add "px" to unit-less properties when animating them. Fixes #4966.Anton M2011-02-131-2/+2
| | | | | | | | | | | | |
* | | | | | | | | | | | | Remove unnecessary "script.type = text/javascript;". Fixes #8198.David Murdoch2011-02-121-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Follow up to 462bb1f66abf239492ee33c60feee3402fe64f77.
* | | | | | | | | | | | | Unexpose $.support._scriptEval as it's not needed. Use a private var ↵David Murdoch2011-02-121-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | instead. Fixes #8200.
* | | | | | | | | | | | | Enhances ajaxSetup so that it can take an optional target option, in which ↵jaubourg2011-02-121-11/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | case target will be updated instead of ajaxSettings. That way, fields that shouldn't be deep extended can be listed and dealt with in one place. jQuery.ajax now makes use of ajaxSetup with target to create its internal settings object. Fixes #7531 in IE9RC.
* | | | | | | | | | | | | Pulls out the callback function in setRequestHeader. Also renames the regexp ↵jaubourg2011-02-121-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | so that what it's meant to do is a bit more obvious.
* | | | | | | | | | | | | Minor changes to enforce JQuery Core Style Guidelines.jaubourg2011-02-122-10/+12
| | | | | | | | | | | | |
* | | | | | | | | | | | | Adds missing crossDomain test.jaubourg2011-02-111-1/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Fixes #8245. Ajax now ensures header names are capitalized so that ↵jaubourg2011-02-112-10/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | non-compliant xhr implementations don't override them.
* | | | | | | | | | | | | Simplifies status normalization in xhr transport. Local file test modified ↵jaubourg2011-02-111-29/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for clarity.
* | | | | | | | | | | | | Make sure .val() works after form.reset() in IE. Fixes #2551.rwldrn2011-02-101-0/+5
| | | | | | | | | | | | |
* | | | | | | | | | | | | Make sure .clone(true) correctly clones namespaced events. Fixes #4537.Anton M2011-02-101-1/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Fix some whitespace issues. Improve and correct an events test.Anton M2011-02-101-4/+4
| | | | | | | | | | | | |
* | | | | | | | | | | | | Replaces jQuery.each loop for headers with a foreach loop.jaubourg2011-02-091-3/+3
| | | | | | | | | | | | |
* | | | | | | | | | | | | Fixes #8219. Introduces the mimeType option to override content-type header ↵jaubourg2011-02-092-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in conversion (and in native xhr when possible). Adds companion overrideMimeType method on jqXHR object (it simply sets the option). Unit test added.
* | | | | | | | | | | | | Makes sure statusText always defaults to "error".jaubourg2011-02-091-1/+1
| | | | | | | | | | | | |
* | | | | | | | | | | | | Revert portions of 7acb141ed7f2dedd950bb65acf878098640d081e that attempt to ↵Colin Snover2011-02-081-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | use a function to hide jQuery metadata from JSON.stringify since this does not work reliably cross-browser (fails in Fx3.5, O11, Saf4).
* | | | | | | | | | | | | Make sure that mousing over Chrome "internal div" doesn't trigger a ↵Anton M2011-02-081-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | mouseleave. Fixes #8209. Follow up to https://github.com/jquery/jquery/commit/4a828c93d40eb67b2041b08bbed0f1973442bd03 which was stupid and got reversed.
* | | | | | | | | | | | | Revert "Make sure that mousing over Chrome "internal div" elements results ↵Anton M2011-02-081-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | in no trigger of a mouseleave." This reverts commit 4a828c93d40eb67b2041b08bbed0f1973442bd03.
* | | | | | | | | | | | | Make sure that mousing over Chrome "internal div" elements results in no ↵Anton M2011-02-081-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | trigger of a mouseleave. Fixes #8209.
* | | | | | | | | | | | | Update jQuery.support.noCloneEvent test to function properly in IE9. Fixes ↵Colin Snover2011-02-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | #8052. 1.5-stable
* | | | | | | | | | | | | Merge branch 'master' of github.com:jquery/jquery into jquery-masterColin Snover2011-02-071-3/+4
|\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | Adds jQuery collection to objects that will be used as global events context ↵jaubourg2011-02-071-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | if provided in the ajax options.
* | | | | | | | | | | | | | Update $.data to use a function instead of an object when attaching to JS ↵Colin Snover2011-02-072-46/+16
|/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | objects in order to hide attached metadata from JSON.stringify. Remove event.js code that was doing this before specifically for events, which is now redundant. Fixes #8108. 1.5-stable
* | | | | | | | | | | | | Fixes a bug that prevented headers from being set in an ajaxSend callback. ↵jaubourg2011-02-071-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unit test modified.
* | | | | | | | | | | | | Makes sure xhrs are actually aborted on unload in IE. Simplifies active xhrs ↵jaubourg2011-02-071-34/+26
| |_|_|_|_|_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | caching in the process.
* | | | | | | | | | | | Fixes #8177. XHR transport now considers 304 Not Modified responses as 200 ↵jaubourg2011-02-051-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | OK if no conditional request header was provided (as per the XMLHttpRequest specification).
* | | | | | | | | | | | Reformats logic for early abort in beforeSend to limit block imbrication.jaubourg2011-02-041-36/+35
| | | | | | | | | | | |
* | | | | | | | | | | | Fixes abort in prefilter. No global event will be fired in that case even if ↵jaubourg2011-02-041-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the global option is set to true. Unit test added.
* | | | | | | | | | | | Disables dataType redirection while selecting transport.jaubourg2011-02-041-2/+2
| | | | | | | | | | | |
* | | | | | | | | | | | Adds widget as the list of local protocols.jaubourg2011-02-031-1/+1
| | | | | | | | | | | |
* | | | | | | | | | | | Don't use a local copy of jQuery.ajaxSettings.isLocal anymore but use the ↵jaubourg2011-02-031-12/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | current value so that it is possible to set isLocal to true for protocols unknown to jQuery.
* | | | | | | | | | | | Adds support for more complex protocol by having the url regexp closer to ↵jaubourg2011-02-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rfc1738.
* | | | | | | | | | | | Stores jQuery.ajaxSettings.isLocal locally at load time so that any change ↵jaubourg2011-02-032-24/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to it won't affect the transport. Fixes the url parsing regexp to deal with empty domains. Adds informative text into test/localfile.html and handles Opera's failure. Revises the way xhr are created by doing all tests at load time and normalizes all the xhr creation functions so that none of them may throw an exception.
* | | | | | | | | | | | Fixes #7653. Changes regexp to detect local protocol so that it will accept ↵jaubourg2011-02-031-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | any protocol finishing by -extension.
* | | | | | | | | | | | Fixes #8146. Custom fields in xhrFields are now set after the XMLHttpRequest ↵jaubourg2011-02-031-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | object has been opened.
* | | | | | | | | | | | Fixes #8152 by applying the same special cases for protocol ↵jaubourg2011-02-032-33/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "chrome-extension:" as were for "file:" (needs tests). Re-organizes and fixes the handling of special cases for HTTP status code in the xhr transport. Also re-organizes the handling of document.location in ajax.js.
* | | | | | | | | | | | Fixes #8146 by introducing the xhrFields option with is a map of ↵jaubourg2011-02-021-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fieldName/fieldValue to set on the native xhr. Can be used to set withCredentials to true for cross-domain requests if needed.
* | | | | | | | | | | | Fixes #8138. Access to document.location is made only once at load time and ↵jaubourg2011-02-021-7/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | if it fails (throwing an exception in IE when document.domain is already set), we use the href of an A element instead.
* | | | | | | | | | | | Fixes #8135. Makes sure any exception thrown by Firefox when trying to ↵jaubourg2011-02-021-65/+82
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | access an XMLHttpRequest property when a network error occured is caught and notified as an error. Added test/networkerror.html to test the behavior.
* | | | | | | | | | | | Fixes #8098. Use the fast document.head when available. Don't set unneeded ↵Mathias Bynens2011-02-023-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | "script.type = text/javascript".
* | | | | | | | | | | | Fixes #7945. Make jQuery.param() serialize plain objects with a property ↵Anton Kovalyov2011-02-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | named jquery correctly.