Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | added curly braces around all if/else statements | Karl Swedberg | 2009-11-28 | 1 | -42/+57 |
| | |||||
* | Allowing falsy values to be passed as a speed for hide(). | Scott Gonzalez | 2009-11-13 | 1 | -1/+1 |
| | |||||
* | Allowing falsy values to be passed as a speed for show(). | Scott Gonzalez | 2009-11-13 | 1 | -1/+1 |
| | |||||
* | Made sure that animate callbacks get executed even when no properties are ↵ | John Resig | 2009-11-07 | 1 | -1/+5 |
| | | | | passed in. Fixes #5459. | ||||
* | Moved a bunch of methods out of the jQuery-specific Sizzle code into ↵ | John Resig | 2009-10-26 | 1 | -0/+8 |
| | | | | more-appropriate files, in jQuery itself. | ||||
* | jquery fx: closes #2542. show/hide(0, fn) wasn't calling the callback. | Ariel Flesler | 2009-09-15 | 1 | -2/+2 |
| | |||||
* | Fix for animating hyphenated CSS properties. Fixes #4156. | John Resig | 2009-07-25 | 1 | -0/+8 |
| | |||||
* | Standardize on using .nodeName in place of .tagName. Fixes jQuery bug #4923. | John Resig | 2009-07-19 | 1 | -5/+5 |
| | |||||
* | Standardizing on .test() and .exec() - moving away from using .match() for ↵ | John Resig | 2009-07-19 | 1 | -1/+1 |
| | | | | RegExp. Fixes jQuery bug #4113. | ||||
* | jquery fx: Exposing the ticking function | Ariel Flesler | 2009-06-02 | 1 | -14/+20 |
| | |||||
* | remove trailing spaces | Brandon Aaron | 2009-03-23 | 1 | -11/+11 |
| | |||||
* | decoupling styles retrieval from the attr method | Brandon Aaron | 2009-03-22 | 1 | -4/+4 |
| | |||||
* | fix for #4204, fadeTo shows hidden elements before animating | Brandon Aaron | 2009-03-18 | 1 | -1/+2 |
| | |||||
* | fix show issue in IE 6. "olddisplay" is sometimes undefined and IE 6 does ↵ | Brandon Aaron | 2009-02-16 | 1 | -5/+5 |
| | | | | not like setting style.display to undefined. also second for loop was mistakenly nested within the first for loop. | ||||
* | Landing a fix for a case where the animation timer wasn't getting stopped ↵ | John Resig | 2009-02-13 | 1 | -1/+2 |
| | | | | (thanks Arrix). Fixes bug #4001. | ||||
* | Added a performance improvement to .hide()/.show() that helps to prevent ↵ | John Resig | 2009-02-09 | 1 | -1/+13 |
| | | | | constant reflows from occurring. Fixes #4038. | ||||
* | jquery fx: sync animations were being left on jQuery.timers (double callback) | Ariel Flesler | 2009-01-14 | 1 | -10/+6 |
| | | | | jQuery.timerId is now a local var and it's not null'ed anymore. | ||||
* | jquery fx: Shortening the code additions on [6037]. | Ariel Flesler | 2009-01-05 | 1 | -12/+17 |
| | |||||
* | Made hide, show, toggle, slideUp, slideDown, and slideToggle animate margins ↵ | John Resig | 2009-01-05 | 1 | -13/+18 |
| | | | | and paddings in addition to height, width, and opacity (results in a much-smoother animation). | ||||
* | Fixed an issue that was introduced by [5743] (which didn't have a test case, ↵ | John Resig | 2009-01-02 | 1 | -8/+5 |
| | | | | either - that has been resolved). This fixed #3739. | ||||
* | jquery data: Closes #3539. Exposed jQuery.queue. Moved all the data and ↵ | Ariel Flesler | 2008-12-30 | 1 | -48/+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 fx: Fixed redundant code | Ariel Flesler | 2008-12-25 | 1 | -2/+2 |
| | |||||
* | jquery fx: Closes #3219. jQuery.fn.toggle can accept a boolean argument ↵ | Ariel Flesler | 2008-12-25 | 1 | -5/+8 |
| | | | | indicating show/hide. | ||||
* | Rewrote the hide and show methods to fix the issue with Safari not hiding ↵ | John Resig | 2008-12-19 | 1 | -22/+45 |
| | | | | distached elements. Fixed #1239, #2233, #3038, #3343, #3395. They're also faster now, as well. | ||||
* | Made a mistake in the patch for #3618, landing fix. | John Resig | 2008-11-18 | 1 | -1/+1 |
| | |||||
* | Standardized the type checks across core. isFunction and isArray now use ↵ | John Resig | 2008-11-17 | 1 | -4/+4 |
| | | | | 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. | ||||
* | jquery core: closes #3541. Added isArray. | Ariel Flesler | 2008-10-29 | 1 | -2/+2 |
| | |||||
* | jquery fx: closes #3496. $.fx.off = true; turns off animations. | Ariel Flesler | 2008-10-22 | 1 | -1/+1 |
| | |||||
* | jquery fx: closes #3495. Animations are synchronous when duration is 0. | Ariel Flesler | 2008-10-18 | 1 | -6/+4 |
| | |||||
* | jquery fx: closes #3128. Saved some bytes when creating custom animations, ↵ | Ariel Flesler | 2008-07-03 | 1 | -20/+13 |
| | | | | using macros. Thanks Mike Helgeson. | ||||
* | fx: 1) patch from Ariel removes the need of adding properties like ↵ | Paul Bakaus | 2008-06-24 | 1 | -10/+6 |
| | | | | scrollTop and scrollLeft specifically to fx.step - The priority order is style[prop] ? style[prop] : elem[prop], 2) fixed the height/width case - it wasn't possible to animate obj.height/obj.width if there wasn't a style attr. | ||||
* | jquery ajax: renamed $.fx.speeds.def to _default to match $.fx.step._default ↵ | Ariel Flesler | 2008-06-20 | 1 | -2/+2 |
| | | | | naming convention. | ||||
* | jquery ajax: making Paul's last change([5735]) shorter. | Ariel Flesler | 2008-06-20 | 1 | -1/+2 |
| | |||||
* | fx: animate() can now animate any property on a generic object or native ↵ | Paul Bakaus | 2008-06-20 | 1 | -7/+5 |
| | | | | wrapper (i.e. window.outerWidth) | ||||
* | jquery fx: removing a needless comment after the last commit. | Ariel Flesler | 2008-05-16 | 1 | -1/+0 |
| | |||||
* | jquery fx: removing 2 unnecessary isFunction calls, options.complete is ↵ | Ariel Flesler | 2008-05-16 | 1 | -2/+2 |
| | | | | ALWAYS a function. | ||||
* | jquery: removing unnecessary trailing and leading spaces & tabs. | Ariel Flesler | 2008-05-13 | 1 | -32/+32 |
| | |||||
* | jquery event & fx: tidying some comments. | Ariel Flesler | 2008-05-13 | 1 | -1/+2 |
| | |||||
* | jquery fx & event: replaced the use of .apply(), where .call() could had ↵ | Ariel Flesler | 2008-05-12 | 1 | -6/+6 |
| | | | | been used. | ||||
* | jquery fx: adding jQuery.fx.def as default speed for animations | Ariel Flesler | 2008-05-02 | 1 | -2/+3 |
| | |||||
* | mainly made the code shorter: | Ariel Flesler | 2008-04-29 | 1 | -30/+36 |
| | | | | | | | | | | | - removed some needless if's - replace multiple "var x" for one, comma separated declaration. - added a local fn called now() for the (new Date)s - fixed the indentation of a block, and a typo in a comment. - used fn instead of prototype where possible - jquery fx: exposed the speeds hash as jQuery.fx.speeds. Also fixed (again) line endings | ||||
* | jquery event: jQuery.toggle can accept more than 2 functions, closes #2378 | Ariel Flesler | 2008-04-29 | 1 | -1/+1 |
| | |||||
* | jquery core: simplified the code using the new jQuery.makeArray from [5314] ↵ | Ariel Flesler | 2008-04-24 | 1 | -2/+1 |
| | | | | where possible. | ||||
* | Fixed an edge case in show() where the css says the display should be none. ↵ | David Serduke | 2008-01-12 | 1 | -0/+3 |
| | | | | In that case force 'block' so it will actually show. | ||||
* | Fixed #2080 by removing the check for nodeType != 1. It was put in to limit ↵ | David Serduke | 2007-12-20 | 1 | -3/+0 |
| | | | | the queuing to just dom objects (ie not text nodes and comment nodes), but the queuing functionality is being used more broadly than I realized so the check is now removed. | ||||
* | Fixed #1781 for warnings created on load by FF javascript.options.strict == ↵ | David Serduke | 2007-12-16 | 1 | -2/+2 |
| | | | | true. | ||||
* | show is now element aware (#960) | Brandon Aaron | 2007-12-08 | 1 | -6/+7 |
| | |||||
* | Fixed #1039 and #1733 by going through the core API and making them text ↵ | David Serduke | 2007-12-07 | 1 | -0/+6 |
| | | | | node and comment node safe. | ||||
* | Added enchancement for #1994 by adding two parameters to .stop() which give ↵ | David Serduke | 2007-11-30 | 1 | -10/+24 |
| | | | | | | | additional functionality. The first parameter clearQueue will clear the queue on the necessary DOM elements so all animation will stop. The second parameter will cause the currently playing animation to immediately complete including reseting original styles on show and hide and calling the callback function. If no parameters are passed it will work as it always did. While adding unit testing I noticed the stop() unit test wasn't working correctly because the element was hidden so I fixed it and added more unit tests around the new functionality. I also added a cursor:pointer to the css (because for a long time I didn't know they were clickable). | ||||
* | Fixed #1942 but running jQuery.css() before jQuery.curCSS(). This way when ↵ | David Serduke | 2007-11-27 | 1 | -2/+2 |
| | | | | the property is width or height it gets the values through calculation instead of just css first. This appears to fix the problem in Opera without hurting any of the other browsers. |