Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Moved the copyright to the intro file, added a ! so that it passes through ↵ | John Resig | 2009-01-04 | 1 | -11/+0 | |
| | | | | YUIMin untouched, and changed the Date and Revision so that they're now generated automatically based upon all of jQuery rather than just the core file. | |||||
* | jquery core: Misc file size optimizations. | Ariel Flesler | 2009-01-04 | 1 | -21/+19 | |
| | ||||||
* | jquery core: Allowing whitespaces within the [6026] addition. | Ariel Flesler | 2009-01-04 | 1 | -1/+1 | |
| | ||||||
* | Moved from the old JSMin to using YUIMin for compressing the jQuery source. ↵ | John Resig | 2009-01-04 | 1 | -0/+3 | |
| | | | | Additionally landed some improvements from #3770 which dramatically reduce the filesize. The final minifed + gzipped size of jQuery went from 19817 bytes to 18063 bytes. | |||||
* | Landed a proper fix for #3255 - which involves doing createElement instead ↵ | John Resig | 2009-01-03 | 1 | -6/+8 | |
| | | | | of going through the normal clean method. | |||||
* | Hid an issue where Safari through an exception when a colgroup was created ↵ | John Resig | 2009-01-03 | 1 | -1/+4 | |
| | | | | in jQuery.clean. Not completely sure what the cause is, yet. | |||||
* | Fixed an issue with .not("#foo, bar") not working correctly, closes #3757. | John Resig | 2008-12-31 | 1 | -1/+1 | |
| | ||||||
* | jquery data: Closes #3539. Exposed jQuery.queue. Moved all the data and ↵ | Ariel Flesler | 2008-12-30 | 1 | -96/+2 | |
| | | | | 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: Removed an orphaned line. Thanks mose. | Ariel Flesler | 2008-12-27 | 1 | -2/+0 | |
| | ||||||
* | jquery core: Fixed a global var leak introduced by me on a recent commit. | Ariel Flesler | 2008-12-26 | 1 | -7/+7 | |
| | ||||||
* | jquery core: Closes #3737. Fixed a possible null dereference. | Ariel Flesler | 2008-12-25 | 1 | -5/+7 | |
| | ||||||
* | jquery core: Closes #1681. jQuery.fn.toggleClass can accept a boolean ↵ | Ariel Flesler | 2008-12-25 | 1 | -2/+4 | |
| | | | | argument indicating add/remove. | |||||
* | jquery core: Closes #3255. The div used in jQuery.clean is emptied in the ↵ | Ariel Flesler | 2008-12-25 | 1 | -2/+6 | |
| | | | | 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 | -2/+2 | |
| | ||||||
* | jquery core: Closes #3666. Removed old code. | Ariel Flesler | 2008-12-25 | 1 | -1/+1 | |
| | ||||||
* | Added support for the new .closest() method (very useful for event delegation). | John Resig | 2008-12-22 | 1 | -0/+11 | |
| | ||||||
* | Added the new jQuery.support object and removed all uses of jQuery.browser ↵ | John Resig | 2008-12-21 | 1 | -117/+24 | |
| | | | | from within jQuery itself (while simultaneously deprecating the use of jQuery.browser). | |||||
* | Fixed an issue with domManip where the incorrect document was being used to ↵ | John Resig | 2008-12-21 | 1 | -1/+1 | |
| | | | | create the document fragment. | |||||
* | Landing the new Sizzle selector engine. There'll need to be some later ↵ | John Resig | 2008-12-20 | 1 | -2/+4 | |
| | | | | 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 an issue with domManip where the incorrect clone fragments were being ↵ | John Resig | 2008-12-19 | 1 | -2/+3 | |
| | | | | used for elements. | |||||
* | Fixed an issue with how .data() was expecting output (trigger now returns ↵ | John Resig | 2008-12-19 | 1 | -1/+1 | |
| | | | | exact output - or null if none is provided, which was tripping it up). | |||||
* | Switched to using DOM Fragments in domManip. | John Resig | 2008-12-19 | 1 | -48/+51 | |
| | ||||||
* | Added selector path logging (creates a trail that plugins can use). | John Resig | 2008-12-19 | 1 | -7/+22 | |
| | ||||||
* | Removing remaining strict-mode warnings. | John Resig | 2008-12-19 | 1 | -3/+3 | |
| | ||||||
* | testrunner: adding tests for $.fn.hasClass. | Ariel Flesler | 2008-12-16 | 1 | -1/+1 | |
| | ||||||
* | IE doesn't care for boolean checks of .createElement - reverted back to ↵ | John Resig | 2008-11-29 | 1 | -1/+1 | |
| | | | | using typeof instead. | |||||
* | Standardized the type checks across core. isFunction and isArray now use ↵ | John Resig | 2008-11-17 | 1 | -35/+33 | |
| | | | | Object.prototype.toString to verify the type, .constructor use was removed in favor of typeof, typeof checks now use ===, undefined checks use === undefined. All of this is outlined in the new style guidelines: http://docs.jquery.com/JQuery_Core_Style_Guidelines#Type_Checks. Fixes bug #3618. | |||||
* | core: height() method wasn't working reliably in Opera - rather than ↵ | Paul Bakaus | 2008-11-07 | 1 | -1/+1 | |
| | | | | returning the actual client height when called on window, it returned the document's height through document.body.clientHeight. The right value to work with is html.clientHeight | |||||
* | jquery core: closes #3541. Added isArray. | Ariel Flesler | 2008-10-29 | 1 | -1/+5 | |
| | ||||||
* | jquery core: forgot to remove a deprecated warning. | Ariel Flesler | 2008-10-29 | 1 | -2/+0 | |
| | ||||||
* | jquery core: improves #3248. Functions are supported by isFunction. | Ariel Flesler | 2008-10-29 | 1 | -1/+1 | |
| | ||||||
* | jquery core: closes #3485. Fixing a memory leak on IE. | Ariel Flesler | 2008-10-18 | 1 | -2/+6 | |
| | ||||||
* | jquery core: fix for [5828]. Put 'function' instead of 'string'. | Ariel Flesler | 2008-08-14 | 1 | -1/+1 | |
| | ||||||
* | jquery core: closes #3154. makeArray uses typeof instead of attribute ↵ | Ariel Flesler | 2008-08-13 | 1 | -1/+1 | |
| | | | | sniffing for strings. | |||||
* | jquery core: closes #3248, #3079, #3026, #3176, #3202, #3129. ↵ | Ariel Flesler | 2008-08-12 | 1 | -2/+4 | |
| | | | | jQuery.makeArray doesn't support functions anymore. Voiding the conflict with Scriptaculous 1.7.x. | |||||
* | jquery core: closes #3241. The 'length' property isn't set to jQuery's ↵ | Ariel Flesler | 2008-08-11 | 1 | -3/+0 | |
| | | | | prototype anymore. | |||||
* | jquery core: small size optimizations for val(). | Ariel Flesler | 2008-08-10 | 1 | -7/+6 | |
| | ||||||
* | jquery core: closes #2652. val() supports option elements, also simplified ↵ | Ariel Flesler | 2008-07-23 | 1 | -1/+4 | |
| | | | | the code. | |||||
* | jquery core: closes #2968. Simplified isFunction, dropping support for DOM ↵ | Ariel Flesler | 2008-07-23 | 1 | -2/+3 | |
| | | | | methods and functions like alert() on IE. | |||||
* | jquery core: closes #3179. Fallback browser version for non supported browsers. | Ariel Flesler | 2008-07-23 | 1 | -1/+1 | |
| | ||||||
* | jquery core: closes #3159. remove() would unbind form.elements instead of a ↵ | Ariel Flesler | 2008-07-15 | 1 | -1/+1 | |
| | | | | form. | |||||
* | jquery core: Closes #3033. Removed support for .. selector on jQuery.find. | Ariel Flesler | 2008-07-09 | 1 | -1/+1 | |
| | ||||||
* | jquery core: closes #3102, #3051. $.fn.eq() accepts a stringified integer. | Ariel Flesler | 2008-06-30 | 1 | -1/+1 | |
| | ||||||
* | core: revertd last change, breaks width/height logic in css() | Paul Bakaus | 2008-06-24 | 1 | -1/+1 | |
| | ||||||
* | core: changed jQuery.css to num (uses curCSS) in the height/width methods ↵ | Paul Bakaus | 2008-06-24 | 1 | -1/+1 | |
| | | | | with dramatically increases performance for height/width | |||||
* | jquery core: closes #3053. clean() wasn't parsing 0's. So html( 0 ) was ↵ | Ariel Flesler | 2008-06-17 | 1 | -4/+4 | |
| | | | | failing failing. | |||||
* | jquery core: closes #3034. Ids with '-' weren't handled by quickExpr. | Ariel Flesler | 2008-06-13 | 1 | -1/+1 | |
| | ||||||
* | jquery core: adding rowSpan to jQuery.props. | Ariel Flesler | 2008-05-27 | 1 | -1/+2 | |
| | ||||||
* | jquery core: closes #2930. Normalizing attr() to return undefined, even when ↵ | Ariel Flesler | 2008-05-24 | 1 | -5/+7 | |
| | | | | getting DOM attributes. | |||||
* | jquery core: casting numbers received by val() to string. | Ariel Flesler | 2008-05-24 | 1 | -0/+3 | |
| |