aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Make sure that height/width getters work on hidden inputs and disconnected ↵jeresig2010-10-222-1/+23
| | | | | | | | 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.
* | Adding another test for an issue in Gecko's matchesSelector implementation. ↵jeresig2010-10-211-2/+8
| | | | | | | | Fixes #7243.
* | Only need to declare the data once.jeresig2010-10-211-3/+3
|/
* Update number of expected assertions in attribute testsAnton M2010-10-191-2/+2
| | | | | Followup to commit 97dfa0d5a85a32fe56aba837bbf2bc889b092d2b which had the side effect to break some attribute unit tests
* Add some more tests to make sure that pulling in data- properties on an ↵John Resig2010-10-171-3/+11
| | | | element with no data set, works.
* fadeToggle(). as suggested by Karl Swedberg in his jQcon talk. patched live! omgPaul Irish2010-10-173-1/+12
|
* Make sure that .data() (no args) returns a list of all the data- properties ↵John Resig2010-10-172-23/+66
| | | | 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-172-1/+16
| | | | with removeData() (no arguments). Fixes #7209.
* Handle the case where JSLint complains about arguments in try/catch already ↵John Resig2010-10-171-2/+2
| | | | being defined (we use the name 'e' consistently for catch(e) - will work to standardize on that now).
* 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.
* Updating the source version to 1.4.4pre.jeresig2010-10-141-1/+1
|
* Tagging the 1.4.3 release.jeresig2010-10-141-1/+1
|
* Fix the number of change tests and remove textarea tests.jeresig2010-10-141-32/+6
|
* Testing *, * was unnecessary - especially in slower browsers.jeresig2010-10-141-2/+1
|
* Don't test inline-block in browsers that don't support it (or an ↵jeresig2010-10-141-17/+46
| | | | approximation of it, like IE).
* Use prepend for the focuin test (to avoid making the test suite jump).jeresig2010-10-141-9/+15
|
* Test visible on inline elements.jeresig2010-10-141-2/+2
|
* Getting weird results for font size tests across platforms - easier to test ↵jeresig2010-10-141-3/+2
| | | | something else (the exact property isn't important for this test).
* Reverting commit 39addc87a37b32be19f2c58ec8babe752c0243e1 after a report of ↵jeresig2010-10-141-4/+4
| | | | problems. Fixes #7196.
* Forgot to update the Rakefile and build.xml files from the previous commit. ↵John Resig2010-10-142-3/+3
| | | | Thanks to @jitter for the catch.
* Updating the copy of Google Closure Compiler.John Resig2010-10-143-1/+1
|
* 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
|
* Change font size to 15px in the test to fix a false negative. Thanks @jitter ↵jeresig2010-10-131-2/+2
| | | | for the catch in 73e4ef27f0d0a92e573092729107ca5572d52292.
* 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-132-5/+24
|
* Handle issue with two concurrent JSONP requests that use the same callback name.Pinhook2010-10-131-4/+4
|
* We want to make sure that we only run the MSIE-specific filter tests if ↵jeresig2010-10-131-2/+2
| | | | opacity is explicitly not supported.
* Test CSS test on font size instead of padding.jeresig2010-10-131-2/+2
|
* IE 9 preserves the case of the Alpha filter - maintain it in the test as well.jeresig2010-10-131-2/+2
|
* Fix broken Ajax test after recent revert to jQuery.ajax namespace.jeresig2010-10-131-1/+1
|
* Merge branch 'bug7150' of http://github.com/csnover/jqueryJohn Resig2010-10-122-2/+5
|\
| * Fix patch for #7150, which was not deleting the events object properly on ↵Colin Snover2010-10-122-3/+6
| | | | | | | | 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-122-2/+2
| | | | | | | | ff6ceadbfd470463e63708413eb5a55bd7e90c69 for the catches.
* | Updating the source version to 1.4.3pre.John Resig2010-10-121-1/+1
| |
* | Tagging the 1.4.3rc2 release.1.4.3rc2John Resig2010-10-121-1/+1
| |
* | Tagging the 1.4.3rc2 release.John Resig2010-10-121-1/+1
| |
* | 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-122-6/+2
| | | | | | | | 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-122-3/+4
|/ | | | correctly. Fixes #7144.
* Use a key name less likely to result in collisions for events on plain JS ↵Colin Snover2010-10-112-8/+12
| | | | 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-112-3/+7
| | | | also a plain object - causing some confusion). Fixes #7143.
* Add some resize event tests.John Resig2010-10-111-0/+8
|
* Added some more tests relating to attaching data to a window.John Resig2010-10-111-2/+11
|
* 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-112-3/+34
|\ \