Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Optimized jQuery(Element) to not call jQuery() twice. | John Resig | 2009-07-11 | 1 | -4/+7 | |
| | ||||||
* | jquery core: Closes #2827. jQuery.each iterates over functions | Ariel Flesler | 2009-06-20 | 1 | -3/+5 | |
| | ||||||
* | Did some light reordering of the jQuery definition. Moved window and ↵ | John Resig | 2009-05-20 | 1 | -15/+10 | |
| | | | | undefined to exist in intro/outro. | |||||
* | jquery core: $() -> $(document) and $(undefined) -> $([]). Removed a ↵ | Ariel Flesler | 2009-05-03 | 1 | -7/+1 | |
| | | | | duplicated block. | |||||
* | index now works in reverse when passed a selector or undefined. fixes #3971 | Brandon Aaron | 2009-05-02 | 1 | -3/+9 | |
| | ||||||
* | Unified the formatting of core.js. === or !== are used wherever appropriate, ↵ | John Resig | 2009-03-31 | 1 | -99/+141 | |
| | | | | syntax has been normalized, braces are added in all cases, and jQuery() now returns an empty set. | |||||
* | remove trailing spaces | Brandon Aaron | 2009-03-23 | 1 | -2/+2 | |
| | ||||||
* | breaking jquery out into smaller modules. added attributes.js, ↵ | Brandon Aaron | 2009-03-18 | 1 | -851/+5 | |
| | | | | manipulation.js, and traversing.js | |||||
* | fix for #4074, pass context to jQuery.clean for jQuery.clone | Brandon Aaron | 2009-03-18 | 1 | -3/+3 | |
| | ||||||
* | fix for #3688, setting type attribute on button causes IE to throw error | Brandon Aaron | 2009-03-17 | 1 | -1/+1 | |
| | ||||||
* | using parseFloat for offset and position methods and removed num helper method | Brandon Aaron | 2009-03-17 | 1 | -5/+0 | |
| | ||||||
* | Backed out commit [6260], was causing too many problems. We'll have to bite ↵ | John Resig | 2009-03-17 | 1 | -3/+8 | |
| | | | | the bullet and assume that the incoming result set has array methods. Un-fixes jQuery bug #4250. | |||||
* | jquery core: Fixed a typo in a comment, closes #4294. | Ariel Flesler | 2009-03-05 | 1 | -1/+1 | |
| | ||||||
* | Simplified the structure of the .css() and .attr() methods (reducing the ↵ | John Resig | 2009-02-28 | 1 | -27/+29 | |
| | | | | number of calls). Need to optimize $.css/$.curCSS/$.attr still. Fixes #4269. | |||||
* | Removed the need for the results set to have array methods. Resolves jQuery ↵ | John Resig | 2009-02-25 | 1 | -8/+3 | |
| | | | | bug #4250. | |||||
* | Made some changes to how .find() works, inlined the duplicate check - should ↵ | John Resig | 2009-02-25 | 1 | -10/+18 | |
| | | | | change other methods to act similarly. Goes towards fixing #4240. | |||||
* | Simplified the isXML function, no need to use recursion. | John Resig | 2009-02-25 | 1 | -3/+6 | |
| | ||||||
* | Cut down on some more function calls for jQuery(...). Everything points back ↵ | John Resig | 2009-02-25 | 1 | -21/+18 | |
| | | | | to the same root jQuery(document) object now. Going towards ticket #4240. | |||||
* | Reduced the number of function calls required for .find() (single element ↵ | John Resig | 2009-02-25 | 1 | -9/+27 | |
| | | | | root), optimized some calls to jQuery() as well. Goes towards fixing #4240. | |||||
* | Overhauled the .remove() and .empty() methods to be much more efficient. ↵ | John Resig | 2009-02-23 | 1 | -8/+21 | |
| | | | | Fixes bug #4222. | |||||
* | Made sure that .remove now uses multiFilter. Fixes bug #4205. | John Resig | 2009-02-20 | 1 | -1/+1 | |
| | ||||||
* | Made it so that appendTo, etc. return the inserted elements (thus using ↵ | John Resig | 2009-02-18 | 1 | -10/+13 | |
| | | | | pushStack, as well). Fixes bugs #3966 and #4182. | |||||
* | A speedup for .remove() (which also speeds up .html()). Fixes #4178. | John Resig | 2009-02-18 | 1 | -1/+1 | |
| | ||||||
* | Added some extra methods for making result set merging easier. | John Resig | 2009-02-15 | 1 | -1/+3 | |
| | ||||||
* | Added support for sorting in Safari - when querySelectorAll isn't able to be ↵ | John Resig | 2009-02-14 | 1 | -2/+4 | |
| | | | | used. | |||||
* | Duplication checks are now handled directly in Sizzle, no need to do extra ↵ | John Resig | 2009-02-14 | 1 | -7/+3 | |
| | | | | work in .find(). | |||||
* | Added some significant speed-ups to height/width checks, thanks to some code ↵ | John Resig | 2009-02-13 | 1 | -7/+13 | |
| | | | | and investigation by Mike Helgeson. Fixes #3082. | |||||
* | Fixed bubbling of live events (if an inner element handles an event first - ↵ | John Resig | 2009-02-09 | 1 | -2/+6 | |
| | | | | and stops progatation - then the parent event doesn't encounter the event). Thanks to Irae for the patch. Fixes bug #3980. | |||||
* | Optimized the clean() code to no longer use .trim() (speeds up working ↵ | John Resig | 2009-02-09 | 1 | -4/+5 | |
| | | | | against long HTML in IE). Fixes #4037. | |||||
* | Removed use of .trim() in globalEval, fixes #4036. | John Resig | 2009-02-09 | 1 | -3/+1 | |
| | ||||||
* | Reworked the .clone() function in IE. Fixes jQuery bugs #3500 (jQuery ↵ | John Resig | 2009-02-09 | 1 | -20/+24 | |
| | | | | 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 | -1/+1 | |
| | ||||||
* | Re-worked the logic for where .selector and .context are added for ID ↵ | John Resig | 2009-01-20 | 1 | -14/+10 | |
| | | | | selectors (especially ones that aren't found). Fixes jQuery bug #3833. | |||||
* | Brought the logic for handling isXMLDoc over from Sizzle. | John Resig | 2009-01-19 | 1 | -2/+2 | |
| | ||||||
* | Landing a fix for non-link anchor tabIndex (from scott.gonzalez). Fixes ↵ | John Resig | 2009-01-19 | 1 | -2/+4 | |
| | | | | ticket #3916. | |||||
* | Only try to wrap the element if it's not disconnected, fixed #3828. | John Resig | 2009-01-12 | 1 | -13/+15 | |
| | ||||||
* | Fixed an issue with parentNode being accessed in attr() on disconnected DOM ↵ | John Resig | 2009-01-12 | 1 | -1/+1 | |
| | | | | elements. | |||||
* | Made a note about the push method. | John Resig | 2009-01-12 | 1 | -0/+2 | |
| | ||||||
* | Made the case specific of the type attribute. | John Resig | 2009-01-11 | 1 | -1/+1 | |
| | ||||||
* | Prevented non-script <script> blocks from executing, fixing #3733. | John Resig | 2009-01-11 | 1 | -1/+1 | |
| | ||||||
* | Fixed boxModel support - is now computed with feature detection, rather than ↵ | John Resig | 2009-01-11 | 1 | -3/+0 | |
| | | | | sniffing. | |||||
* | .closest() with positional selectors wasn't worked as expected. | John Resig | 2009-01-10 | 1 | -1/+3 | |
| | ||||||
* | Fixed an issue with script nodes being removed incorrectly, fixes #3737. | John Resig | 2009-01-10 | 1 | -1/+1 | |
| | ||||||
* | Selector state wasn't being passed along on a cloned jQuery object. | John Resig | 2009-01-08 | 1 | -0/+6 | |
| | ||||||
* | Fixed tabindex normalization so that elements that natively support tabbing, ↵ | Scott González | 2009-01-07 | 1 | -4/+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. | |||||
* | Landed a number of improvements to the selector engine. Results are ↵ | John Resig | 2009-01-07 | 1 | -2/+7 | |
| | | | | | | | auto-merged onto the jQuery object, class filtering is now done inline, and not filtering is more efficient. | |||||
* | Made the .unqiue() within .find() optional (speeds up calls). | John Resig | 2009-01-06 | 1 | -6/+10 | |
| | ||||||
* | Switched back to the old style of running embedded scripts (users who have ↵ | John Resig | 2009-01-05 | 1 | -16/+5 | |
| | | | | | | | duplicate runs will have to deal with it another way). | |||||
* | Make sure that if no ownerDocument is available that we fall back to the ↵ | John Resig | 2009-01-05 | 1 | -3/+3 | |
| | | | | node itself (likely the document). | |||||
* | Landed cross-browser support for tabIndex, by Scott, closes ticket #3649. | John Resig | 2009-01-05 | 1 | -0/+7 | |
| |