aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Backing out commit 795e880bba1f7f949df58748f7fd92e50296a8f4 - errors popping ↵jeresig2010-11-091-4/+4
| | | | up in IE 6/7/8.
* Need to also handle the case where 'auto' is being returned, as in Firefox. ↵jeresig2010-11-091-2/+2
| | | | Follow-up to #7395.
* Maintain returning 0px from width/height for disconnected nodes for ↵jeresig2010-11-091-2/+7
| | | | backwards compat, for now. Fixes #7395.
* Fixes #7397; Adds 4 supporting unit tests.rwldrn2010-11-091-4/+4
|
* Remove conditional that prevents attr from working on non-Element nodes. ↵Colin Snover2010-11-091-66/+63
| | | | Fixes #7451.
* Make sure that if an additional load event is triggered (such as an iframe ↵John Resig2010-11-091-8/+11
| | | | being dynamically injected in DOM ready) the ready event isn't triggered twice. Fixes #7352.
* Merge branch 'bug7422' of https://github.com/csnover/jquery into csnover-bug7422John Resig2010-11-091-4/+5
|\
| * Ensure that AJAX requests are actually aborted in all browsers. Fix #7422.Colin Snover2010-11-061-4/+5
| |
* | Make sure that when multiple variables are being declared that assignments ↵John Resig2010-11-0912-45/+98
| | | | | | | | are each done on their own line.
* | We don't do end of line comments, move them above.John Resig2010-11-092-3/+5
|/
* Limit the scope of the CSS 'auto' change to just height/width. Fixes #7393.jeresig2010-11-031-2/+2
|
* Opera doesn't give height/width of display: none elements with ↵jeresig2010-11-031-6/+13
| | | | getComputedStyle but does with currentStyle - fall back to that if it exists.
* Make sure that accessing computed CSS for elements returns 'auto' instead of ↵jeresig2010-11-011-4/+5
| | | | '' consistently. Fixes #7337.
* Fix quotes in comment.John Resig2010-10-281-1/+1
|
* Calling .hide().show() on a stylesheet-hidden element wasn't bringing it ↵jeresig2010-10-271-1/+1
| | | | back. Fixes #7331.
* For .show() with no arguments, only set display of elements in the second ↵Karl Swedberg2010-10-261-5/+16
| | | | loop if they don't have style.display already set or if style.display isn't none. Fixes #7315.
* Temporarily backing out commit bd474799bf95f4ecdc47a7577750eaf69e2236d4.John Resig2010-10-251-5/+0
|
* Merge branch 'jquery_dev' of http://github.com/danheberden/jquery into ↵John Resig2010-10-251-0/+5
|\ | | | | | | danheberden-jquery_dev
| * Prevent IE from firing live/delegate events on disabled elements. (#6911)danheberden2010-10-251-0/+5
| |
* | Backing out fix for #5803 from 3b50eaca2cd0b1439235e39c4e98a6438e8f55b2.John Resig2010-10-251-6/+0
|/
* Merge branch 'jquerymaster' of http://github.com/SlexAxton/jquery into ↵John Resig2010-10-251-1/+1
|\ | | | | | | SlexAxton-jquerymaster
| * Forces lower case comparison of protocol and host when determining whether ↵Alex Sexton2010-10-201-1/+1
| | | | | | | | the request is remote or local. Fixes #6908
* | Merge branch '6897' of http://github.com/SlexAxton/jquery into SlexAxton-6897John Resig2010-10-252-14/+13
|\ \
| * | Moved jQuery.props to attributes since it was only used in support. Fixes ↵Alex Sexton2010-10-252-14/+13
| | | | | | | | | | | | #6897 - suggestion by dmethvin
* | | Allow DELETE requests to have a content body, and properly serialize data to ↵dmethvin2010-10-251-4/+4
| | | | | | | | | | | | the url for HEAD requests. Fixes #7285.
* | | Honor stopImmediatePropagation for live/delegate event handlers. Fixes #7217.dmethvin2010-10-251-0/+3
| | |
* | | Merge branch 'master' of http://github.com/rwldrn/jqueryJohn Resig2010-10-252-0/+9
|\ \ \
| * | | Fixes #7229 and #5803rwldrn2010-10-242-0/+9
| |/ /
* | | Merge branch 'unusedTrue' of http://github.com/lrbabe/jquery into ↵John Resig2010-10-251-2/+2
|\ \ \ | |/ / |/| | | | | lrbabe-unusedTrue
| * | .cur() doesn't take any boolean parameter since 1.4.3lrbabe2010-10-251-2/+2
| |/
* | Make sure that .width()/.height() don't return NaN also standardize on ↵jeresig2010-10-222-26/+24
| | | | | | | | returning instead of auto for default values (which is what we do elsewhere in .css() as well). Fixes #7225.
* | Make sure that the correct height/width of the elements is retreived. Fixes ↵jeresig2010-10-221-2/+14
| | | | | | | | #7225.
* | Fix broken selector code from last commit.jeresig2010-10-221-0/+3
| |
* | Make sure that +, >, ~ leading, rooted, selectors go to the old engine. ↵jeresig2010-10-221-3/+0
| | | | | | | | Thanks to @rkatic for the catch! Fixes #7220.
* | Make sure that height/width getters work on hidden inputs and disconnected ↵jeresig2010-10-221-0/+4
| | | | | | | | elements. Fixes #7225.
* | Make sure that the ready event doesn't double-fire when .bind(ready) is ↵jeresig2010-10-221-2/+2
| | | | | | | | used. Fixes #7247.
* | Only need to declare the data once.jeresig2010-10-211-3/+3
|/
* fadeToggle(). as suggested by Karl Swedberg in his jQcon talk. patched live! omgPaul Irish2010-10-171-1/+2
|
* Make sure that .data() (no args) returns a list of all the data- properties ↵John Resig2010-10-171-21/+45
| | | | as well. Also make sure that accessing a data- property via .data() doesn't cause it to change again at a later time (it should be static). Fixes #7222, #7223.
* Var wasn't being explicitly declared. Fixes #7226.John Resig2010-10-171-1/+1
|
* We removed deleteExpando after 1.4.2, for some reason. This caused problems ↵John Resig2010-10-171-0/+10
| | | | with removeData() (no arguments). Fixes #7209.
* Bringing back the change from 80a4178af9b12e6617bfcec818c538dfe08d3791, ↵John Resig2010-10-151-4/+4
| | | | adapted to handle both the function collision and the issue mentioned in #7196.
* Reverting commit 39addc87a37b32be19f2c58ec8babe752c0243e1 after a report of ↵jeresig2010-10-141-4/+4
| | | | problems. Fixes #7196.
* Make sure that we don't attempt to handle scrolling when the node is ↵John Resig2010-10-141-5/+8
| | | | disconnected from the document. Fixes #7190.
* Oops, still have jQuery.ajax.* on the brain.jeresig2010-10-131-2/+2
|
* beforedeactivate will fire before focusout - use that to our advantage when ↵Justin Meyer2010-10-131-0/+2
| | | | working with the change event.
* Make sure that focusin/focusout bubbles in non-IE browsers.Justin Meyer2010-10-131-4/+9
|
* Handle issue with two concurrent JSONP requests that use the same callback name.Pinhook2010-10-131-4/+4
|
* Merge branch 'bug7150' of http://github.com/csnover/jqueryJohn Resig2010-10-121-1/+1
|\
| * Fix patch for #7150, which was not deleting the events object properly on ↵Colin Snover2010-10-121-2/+2
| | | | | | | | plain JS objects. Thanks to jitter for catching it.