aboutsummaryrefslogtreecommitdiffstats
path: root/src/fx.js
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed an edge case in show() where the css says the display should be none. ↵David Serduke2008-01-121-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 Serduke2007-12-201-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 Serduke2007-12-161-2/+2
| | | | true.
* show is now element aware (#960)Brandon Aaron2007-12-081-6/+7
|
* Fixed #1039 and #1733 by going through the core API and making them text ↵David Serduke2007-12-071-0/+6
| | | | node and comment node safe.
* Added enchancement for #1994 by adding two parameters to .stop() which give ↵David Serduke2007-11-301-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 Serduke2007-11-271-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.
* Fix #1827 bug where extra setInterval()s can be called during animation.David Serduke2007-11-161-4/+7
|
* Fixed #1822 bug where queue() didn't always default to type 'fx'.David Serduke2007-11-161-1/+3
|
* Fix for #1823 bug in animate {queue:false} plus a unit test.David Serduke2007-11-161-1/+2
|
* Added a fix for bug #1751, where the options getting overwritten for an ↵John Resig2007-10-181-3/+3
| | | | animation was causing issues.
* Fixed animating to 0% (Bug #1586).John Resig2007-09-151-2/+2
|
* Forgot the 'var' statement, causing variables to leak. (Bug #1592)John Resig2007-09-151-2/+2
|
* Convert relative animations to use -= and += (instead of just - and +, which ↵John Resig2007-09-151-7/+4
| | | | conflicted with normal absolute animations). (Fixes bug #1607) Also fixed a bug in queue.
* Fixed some bugs in how .queue() works (it wasn't handling the argument order ↵John Resig2007-09-141-2/+2
| | | | correctly).
* Absolutely position animations, damn my twichy fingers for commiting too soon.Sean Catchpole2007-09-121-1/+4
|
* Animate should absolutely position if a number is passed (Ex: -700)Sean Catchpole2007-09-121-1/+1
|
* Fixed a bug that was occurring in the packed version of jQuery.John Resig2007-09-101-19/+19
|
* Moved the fx queueing over to the new expando system.John Resig2007-09-091-8/+5
|
* .stop() wouldn't resume any queued animations.John Resig2007-09-091-1/+1
|
* Reorganzing the jQuery source (first phase).John Resig2007-09-081-0/+397