Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Reworked the .clone() function in IE. Fixes jQuery bugs #3500 (jQuery ↵ | John Resig | 2009-02-09 | 1 | -1/+26 | |
| | | | | expandos were causing extra elements to appear from using .html() cloning), #3254 (Mis-match in clone result length causes problem), and #2845 (Cloning an <object/> causes exceptions to be thrown). | |||||
* | Made sure that .removeClass(null) doesn't throw an exception. Fixes #3847. | John Resig | 2009-01-20 | 1 | -2/+6 | |
| | ||||||
* | Re-worked the logic for where .selector and .context are added for ID ↵ | John Resig | 2009-01-20 | 1 | -1/+5 | |
| | | | | selectors (especially ones that aren't found). Fixes jQuery bug #3833. | |||||
* | Added two more tweaks for XHTML core tests. | John Resig | 2009-01-19 | 1 | -2/+2 | |
| | ||||||
* | Made some tweaks to the core tests so that they'll run better under XHTML. | John Resig | 2009-01-19 | 1 | -5/+5 | |
| | ||||||
* | Landing a fix for non-link anchor tabIndex (from scott.gonzalez). Fixes ↵ | John Resig | 2009-01-19 | 1 | -15/+14 | |
| | | | | ticket #3916. | |||||
* | Only try to wrap the element if it's not disconnected, fixed #3828. | John Resig | 2009-01-12 | 1 | -1/+6 | |
| | ||||||
* | Fixed an issue with parentNode being accessed in attr() on disconnected DOM ↵ | John Resig | 2009-01-12 | 1 | -1/+3 | |
| | | | | elements. | |||||
* | Prevented non-script <script> blocks from executing, fixing #3733. | John Resig | 2009-01-11 | 1 | -1/+5 | |
| | ||||||
* | .closest() with positional selectors wasn't worked as expected. | John Resig | 2009-01-10 | 1 | -1/+4 | |
| | ||||||
* | Fixed an issue with script nodes being removed incorrectly, fixes #3737. | John Resig | 2009-01-10 | 1 | -1/+4 | |
| | ||||||
* | testrunner: Removing every global variable leaked within (and outside) ↵ | Ariel Flesler | 2009-01-09 | 1 | -12/+11 | |
| | | | | tests. Some were deleted and some saved within the jQuery namespace. | |||||
* | Selector state wasn't being passed along on a cloned jQuery object. | John Resig | 2009-01-08 | 1 | -1/+6 | |
| | ||||||
* | Fixed tabindex normalization so that elements that natively support tabbing, ↵ | Scott González | 2009-01-07 | 1 | -8/+8 | |
| | | | | | | but don't have a tabindex explicitly set return 0 instead of undefined. Removed jQuery.support.tabindex since we're only normalizing non-XML right now and all browsers support tabIndex for HTML documents. | |||||
* | Simplified the XML clone test. | John Resig | 2009-01-05 | 1 | -4/+6 | |
| | ||||||
* | Simplified the XML selector test (save the result). | John Resig | 2009-01-05 | 1 | -3/+4 | |
| | ||||||
* | Landed cross-browser support for tabIndex, by Scott, closes ticket #3649. | John Resig | 2009-01-05 | 1 | -0/+56 | |
| | ||||||
* | Forgot to merge in some of the new tests from Sizzle. | John Resig | 2009-01-05 | 1 | -1/+1 | |
| | ||||||
* | Landed a proper fix for #3255 - which involves doing createElement instead ↵ | John Resig | 2009-01-03 | 1 | -2/+4 | |
| | | | | of going through the normal clean method. | |||||
* | Disabled testing of em-defined borders, need to look back into this issue. | John Resig | 2009-01-02 | 1 | -4/+6 | |
| | ||||||
* | The exact escaping of the text() test isn't important - as long as < is escaped. | John Resig | 2009-01-02 | 1 | -1/+1 | |
| | ||||||
* | Fixed an issue with .not("#foo, bar") not working correctly, closes #3757. | John Resig | 2008-12-31 | 1 | -1/+5 | |
| | ||||||
* | jquery data: Closes #3539. Exposed jQuery.queue. Moved all the data and ↵ | Ariel Flesler | 2008-12-30 | 1 | -94/+0 | |
| | | | | queue functions to their own module. Made the dequeue function more generic(designed to be used on functions). Closes #3748. Reverted a previous modification. | |||||
* | jquery core: Closes #1681. jQuery.fn.toggleClass can accept a boolean ↵ | Ariel Flesler | 2008-12-25 | 1 | -1/+8 | |
| | | | | argument indicating add/remove. | |||||
* | jquery core: Closes #3255. The div used in jQuery.clean is emptied in the ↵ | Ariel Flesler | 2008-12-25 | 1 | -1/+13 | |
| | | | | end. Cleaning the parentNode's properties of the elements. | |||||
* | jquery core: Closes #3641. jQuery.merge stopped looping once a 0 was found. | Ariel Flesler | 2008-12-25 | 1 | -0/+15 | |
| | ||||||
* | Added support for the new .closest() method (very useful for event delegation). | John Resig | 2008-12-22 | 1 | -0/+8 | |
| | ||||||
* | Landing the new Sizzle selector engine. There'll need to be some later ↵ | John Resig | 2008-12-20 | 1 | -14/+27 | |
| | | | | tweaks (to make the tests a little more pragmatic - especially for document order elements). But it appears to be passing well and that's enough. Closes #3563. | |||||
* | Fixed line-ending issue. | John Resig | 2008-12-19 | 1 | -1719/+1719 | |
| | ||||||
* | Tweaked mis-numbered makeArray test. | John Resig | 2008-12-19 | 1 | -1/+1 | |
| | ||||||
* | Switched to using DOM Fragments in domManip. | John Resig | 2008-12-19 | 1 | -2/+2 | |
| | ||||||
* | Added selector path logging (creates a trail that plugins can use). | John Resig | 2008-12-19 | 1 | -0/+58 | |
| | ||||||
* | testrunner: re adding the test for a function within isFunction. | Ariel Flesler | 2008-12-16 | 1 | -3/+1 | |
| | ||||||
* | testrunner: fixing tests that were broken due to recent updates to qunit. | Ariel Flesler | 2008-10-18 | 1 | -15/+14 | |
| | ||||||
* | jquery core: closes #3248, #3079, #3026, #3176, #3202, #3129. ↵ | Ariel Flesler | 2008-08-12 | 1 | -3/+6 | |
| | | | | jQuery.makeArray doesn't support functions anymore. Voiding the conflict with Scriptaculous 1.7.x. | |||||
* | jquery core: closes #2652. val() supports option elements, also simplified ↵ | Ariel Flesler | 2008-07-23 | 1 | -2/+14 | |
| | | | | the code. | |||||
* | jquery core: closes #2968. Simplified isFunction, dropping support for DOM ↵ | Ariel Flesler | 2008-07-23 | 1 | -3/+5 | |
| | | | | methods and functions like alert() on IE. | |||||
* | test runner: optimizing a test for speed. | Ariel Flesler | 2008-07-01 | 1 | -6/+9 | |
| | ||||||
* | test runner: recloses #3102. Adding one test for $().eq("1") | Ariel Flesler | 2008-07-01 | 1 | -1/+3 | |
| | ||||||
* | test runner: 2 tests for [5728]. | Ariel Flesler | 2008-06-17 | 1 | -1/+5 | |
| | ||||||
* | test runner: adding 2 tests for .val( Number ). | Ariel Flesler | 2008-05-29 | 1 | -5/+11 | |
| | | | | Removed a silly test. | |||||
* | test runner: the changes are: | Ariel Flesler | 2008-05-28 | 1 | -528/+525 | |
| | | | | | | | - Replaced all the $ for jQuery in the tests and suite. - Added a noConflict to testrunner.js. - Modified the test for noConflict() so that it still work. - Added jQuery 1.2.1 and 1.2.3 to otherlibs. | |||||
* | test runner: A test was failing on Opera 9.50. Not a bug, just made the test ↵ | Ariel Flesler | 2008-05-24 | 1 | -1/+1 | |
| | | | | less specific and it passed. | |||||
* | test runner: adding more tests for attr(). Related to [5574] and [5683]. | Ariel Flesler | 2008-05-24 | 1 | -107/+128 | |
| | ||||||
* | test runner: improved the shown message of 4 isFunction tests. | Ariel Flesler | 2008-05-14 | 1 | -4/+4 | |
| | ||||||
* | test runner: improved a test and added a missing semicolon | Ariel Flesler | 2008-05-12 | 1 | -6/+8 | |
| | ||||||
* | test runner: added 2 tests for [5500] | Ariel Flesler | 2008-05-08 | 1 | -4/+11 | |
| | ||||||
* | test runner: extra tests for $.fn.add enabled by [5503] and a small fix for ↵ | Ariel Flesler | 2008-05-08 | 1 | -2/+11 | |
| | | | | an html() test. | |||||
* | test runner: making 2 tests more flexible because they yield a slightly ↵ | Ariel Flesler | 2008-05-08 | 1 | -2/+2 | |
| | | | | different result on Safari 3, but still acceptable. | |||||
* | test runner: extra test for makeArray, related to [5481] | Ariel Flesler | 2008-05-07 | 1 | -3/+5 | |
| |