aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.effects.core.js
Commit message (Collapse)AuthorAgeFilesLines
* Easings: Save a byte.Scott González2012-04-201-1/+1
|
* Effects core: Properly handle defaults for effects that are called with a ↵Scott González2012-04-021-3/+4
| | | | single hash.
* Lint fixes.Scott González2012-04-021-28/+46
|
* A few lint fixes.Scott González2012-04-021-8/+10
|
* Protect all copyright notices against minificationJo Liss2012-04-021-1/+1
| | | | | | | For instance, this is useful for the jquery-ui-rails gem, which does not use jQuery UI's own minification, but relies on Rails to minify the files where necessary. Rails in turn uses UglifyJS for JS and YUI for CSS, both of which respect the /*! ... */ convention.
* Updated copyright year.Scott González2012-03-081-1/+1
|
* Update data naming for Effects. Partial fix for #7810Jörn Zaefferer2012-03-011-2/+2
|
* Use jQuery.css() instead of deprecated jQuery.curCSS().Scott González2012-02-121-1/+1
|
* Easings: Rewrote all easings to only rely on state and reduce code size. ↵Scott González2012-02-111-215/+35
| | | | Fixes #8115 - Easings: Simplify equations to only rely on state.
* Merge pull request #429 from ckdake/masterScott González2011-11-171-1/+1
|\ | | | | Just a small typo fix
| * Typo fix: loose -> loseChris Kelly2011-08-101-1/+1
| |
* | Effects Core: Do not overwrite css or class changes that aren't animated ↵ddstreet2011-10-251-16/+16
| | | | | | | | during class animation. Fixed #7106 - animateClass: css and class changes during animation are lost
* | Effects: fixing an animateClass issue when the class was emptyCorey Frang2011-09-291-1/+1
| |
* | Effect core: Making animate class cross-frame safe, style guidenceCorey Frang2011-09-291-3/+3
|/
* Effects: Adding a check to retain focused elements after wrapping and ↵Corey Frang2011-08-021-3/+20
| | | | unwrapping in animations - Fixes #7595 - Wrapper-creating jquery-ui animations will discard any focus state during the animation - Thanks @rubyruy
* Effects.core: Check Visibility vs 'hide' and 'show' modes, finish ↵Corey Frang2011-06-231-4/+11
| | | | immediately if neccessary - Fixes #6715 - Hide and Show try to affect hidden and showing elements
* Effects.*: DRY the complete callback execution into the 'done' callback ↵gnarf2011-06-211-1/+13
| | | | passed into an effect
* Effects.*: Updating Effect Method API to avoid duplicating the queue call - ↵gnarf2011-06-211-1/+6
| | | | Fixes #7318 - Add the queue functions to $.fn.effect()
* effects.core: Convert elements height/width to px and restore after ↵tomykaira2011-06-091-1/+7
| | | | animation in all effects. Fixed #5245 - Relative width elements break when wrapped for effects
* Unit Tests & effects.scale: Fixing bugs in effects unit tests - Particularly ↵gnarf2011-05-181-1/+1
| | | | IE, found a bug in scale.js in the meantime. Fixes #7395 - Size based effects are breaking unit tests in IE - also leaking a global var
* Class animation: Fixed handling of duration.Scott González2011-05-121-1/+1
|
* effects.core: Rework animateClass to support a 'children' option - Fixes ↵gnarf2011-05-121-19/+49
| | | | #3939 - Option to animate children elements in animateClass
* Effects.core: Style Commit - double-quotes and threeqals and whitespacegnarf2011-05-121-65/+65
|
* Class animation: Cleaned up detection of what we can animate and fixed ↵gnarf2011-05-111-73/+62
| | | | border styles. Fixes #7109 - animateClass doesn't like going from borderStyle: none to borderStyle: *.
* Class Animation: Use .attr( "class" ) instead of .attr( "className" ) and ↵Scott González2011-04-271-25/+24
| | | | adjust the queueing logic for jQuery 1.6 compatibility. Fixes #7275 - $.effects.animateClass broken in jQuery 1.6."
* Effects: Moved effects to $.effects.effect[] and deprecated use of ↵gnarf2011-03-151-6/+29
| | | | $.effects[]. Fixes #7103 - Effects: Move effects to $.effects.effect[].
* effects.core: Another place where args.callback was used that escaped my ↵gnarf2011-03-111-3/+3
| | | | first pass
* Effects: Handle just passing an effect name.Scott González2011-03-091-0/+5
|
* effects.core: Style Guidancegnarf2011-03-061-239/+286
|
* Effects: Minor whitespace improvementsgnarf2011-03-051-1/+0
|
* Cleaning up effects.core _normalizeArguments a bit moregnarf2011-03-021-12/+18
|
* Starting to clean up the internal API for animationsgnarf2011-03-021-33/+31
|
* Updated copyright year.Scott González2011-01-171-1/+1
|
* Effects: Fixed queueing of class animations. Fixes #6748 - animateClass ↵Scott González2010-12-141-33/+31
| | | | broken in 1.8.7.
* Effects: set right/bottom to 'auto' so effects work with dir=rtl. Fixed ↵Kevin Dalman2010-12-131-1/+1
| | | | #6736 - Bug in slide effect when dir=rtl and has position.right.
* Core: Fixed switchClass queueing issues using lazy evaluation of element's ↵Alex Dovenmuehle2010-11-191-24/+32
| | | | style. Fixed #6244 - switchClass queues incorrectly.
* Effects: Allow named speeds to be 0. Fixes #6657 - Allow named speeds to be 0J. Ryan Stinnett2010-11-161-1/+1
|
* Effects: Added borderColor to color animation list. Fixes #6164 - Effectts: ↵Scott González2010-10-081-1/+1
| | | | Allow borderColor to be animated.
* Effects: Jump to final state and execute callbacks when $.fx.off is set to ↵Scott González2010-10-041-2/+16
| | | | true. Fixes #6131 - Dialog breaks when $.fx.off. Partial fix for #5512 - jQuery.fx.off and effect on jQuery UI Effects.
* Effects: Fixed .show(), .hide(), .toggle() to accept a hash of options ↵Scott González2010-09-201-4/+17
| | | | again. Fixes #6078 - Effects: Passing an object for parameters no longer works. Fixes #6067 - Dialog show/hide animations do not work.
* Effects: Fix show/hide/toggle test for using core functions. Fixed: #5456 - ↵malsup2010-08-091-4/+4
| | | | show() function broken with "normal" speed
* argument shifting is not done correctly when the options argument is not ↵kobrigo2010-07-161-5/+5
| | | | supplied. the result is that the callback is not called. this fixes Ticket #5731 foooo
* All: Added http://jqueryui.com/about to header comments.Scott González2010-07-141-1/+1
|
* All: Define a local undefined variable inside the main closure.Scott González2010-07-131-1/+1
|
* Updated copyright headers to make it clear that you can choose between MIT ↵Scott González2010-07-091-3/+3
| | | | and GPLv2. Also added a link to http://jquery.org/license.
* Effects: Proper argument shuffling when calling show/hide/toggle without a ↵Scott González2010-03-041-0/+4
| | | | | | speed. Fixes #5269 - Show and hide effects errantly require "duration" option to fire callback.
* Effects: Properly normalizing arguments for named speeds.Scott González2010-02-181-1/+1
| | | | Fixes #5192 - 1.8rc2 Toggle speed issue.
* effects: fixed #4097 - bind/fold didnt workPaul Bakaus2010-01-281-0/+1
|
* Happy New YearRichard Worth2010-01-201-1/+1
|
* class animation: added scrollbar property filtering back in to prevent an ↵Scott González2009-11-161-2/+1
| | | | error in IE.