aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* | Fix some gaps in the handling of event data properties. Thanks to @jitter in ↵John Resig2010-10-121-1/+1
| | | | | | | | ff6ceadbfd470463e63708413eb5a55bd7e90c69 for the catches.
* | Forgot to remove the child selector in the previous commit.John Resig2010-10-121-1/+0
| |
* | The child selector-prefix branch doesn't work with selectors that have a ↵John Resig2010-10-121-5/+0
| | | | | | | | larger depth. Removing for now - will need to re-evaluate in the future.
* | Make sure that .find() with multiple direct child selectors is handled ↵John Resig2010-10-121-2/+2
|/ | | | correctly. Fixes #7144.
* Use a key name less likely to result in collisions for events on plain JS ↵Colin Snover2010-10-111-7/+11
| | | | objects. Fixes bug #7150.
* The world isn't ready for moving the Ajax methods to jQuery.ajax.*. Hope to ↵John Resig2010-10-111-28/+27
| | | | move them there some day. Fixes #7146.
* Handle some edge cases with binding events to the window object (which is ↵John Resig2010-10-111-2/+2
| | | | also a plain object - causing some confusion). Fixes #7143.
* Merge branch 'animateHooks' of http://github.com/lrbabe/jquery into ↵John Resig2010-10-111-2/+2
|\ | | | | | | lrbabe-animateHooks
| * Make $.fn.animate compatible with jQuery.cssHookslrbabe2010-10-111-2/+2
| |
* | Merge branch 'bug7141' of http://github.com/csnover/jquery into csnover-bug7141John Resig2010-10-111-3/+4
|\ \
| * | Fix olddisplay was inappropriately set when calling hide on an already ↵Colin Snover2010-10-111-3/+4
| |/ | | | | | | hidden element. Fixes #7141.
* / Fixed getting styles from disconnected nodes. Fixes #7148.Scott González2010-10-111-0/+3
|/
* Make sure closest works on disconnected DOM nodes. Fixes #7142.John Resig2010-10-111-1/+1
|
* Return the zeroed-out bounding box instead of passing it on.jeresig2010-10-101-1/+1
|
* Make sure that the unload event doesn't leak in IE - use jQuery's binding ↵jeresig2010-10-101-1/+1
| | | | mechanism to make that happen.
* Tweaking some formatting of the closest changes.jeresig2010-10-101-8/+5
|
* Switch back to using Sizzle.matchesSelector.jeresig2010-10-101-6/+7
|
* Use the new Sizzle matches functionality.jeresig2010-10-101-1/+1
|
* Fix formatting and switch to using the new matchesSelector method in Sizzle.jeresig2010-10-101-13/+14
|
* Should improve performance of closest considerably. Benchmark proof in ↵wycats2010-10-091-11/+19
| | | | speed/closest.html
* Change event did not fire in IE when an explicit .focus() was used. Fixes #6374.jeresig2010-10-091-1/+4
|
* Fix the case where live change was breaking if a live click was bound ahead ↵jeresig2010-10-091-0/+1
| | | | of time. Very similar to #6359. Fixes #6505.
* Merge branch 'master' of http://github.com/petersendidit/jquery into ↵John Resig2010-10-091-0/+2
|\ | | | | | | petersendidit-master
| * Merge branch 'master' of git://github.com/jquery/jqueryDavid Petersen2010-10-072-2/+2
| |\
| * | Set event.LiveFired to undefined in specialSubmit handler so that click ↵David Petersen2010-09-301-0/+2
| | | | | | | | | | | | events bound before the submit won't prevent the submit to fire. Fixes #6359
* | | Merge branch 'bug7123' of http://github.com/csnover/jquery into csnover-bug7123John Resig2010-10-091-0/+4
|\ \ \
| * | | Coerce all array values to strings before comparison in val(). Fixes bug #7123.Colin Snover2010-10-081-0/+4
| | |/ | |/|
* | | Merge branch 'bug7018' of http://github.com/csnover/jquery into csnover-bug7018John Resig2010-10-091-2/+4
|\ \ \
| * | | Fix bug #7018.Colin Snover2010-10-061-2/+4
| |/ /
* | | Merge branch 'animate-nonblock' of http://github.com/csnover/jquery into ↵John Resig2010-10-093-83/+137
|\ \ \ | | | | | | | | | | | | csnover-animate-nonblock