Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Easings: Save a byte. | Scott González | 2012-04-20 | 1 | -1/+1 |
| | |||||
* | Effects core: Properly handle defaults for effects that are called with a ↵ | Scott González | 2012-04-02 | 1 | -3/+4 |
| | | | | single hash. | ||||
* | Lint fixes. | Scott González | 2012-04-02 | 1 | -28/+46 |
| | |||||
* | A few lint fixes. | Scott González | 2012-04-02 | 1 | -8/+10 |
| | |||||
* | Protect all copyright notices against minification | Jo Liss | 2012-04-02 | 1 | -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ález | 2012-03-08 | 1 | -1/+1 |
| | |||||
* | Update data naming for Effects. Partial fix for #7810 | Jörn Zaefferer | 2012-03-01 | 1 | -2/+2 |
| | |||||
* | Use jQuery.css() instead of deprecated jQuery.curCSS(). | Scott González | 2012-02-12 | 1 | -1/+1 |
| | |||||
* | Easings: Rewrote all easings to only rely on state and reduce code size. ↵ | Scott González | 2012-02-11 | 1 | -215/+35 |
| | | | | Fixes #8115 - Easings: Simplify equations to only rely on state. | ||||
* | Merge pull request #429 from ckdake/master | Scott González | 2011-11-17 | 1 | -1/+1 |
|\ | | | | | Just a small typo fix | ||||
| * | Typo fix: loose -> lose | Chris Kelly | 2011-08-10 | 1 | -1/+1 |
| | | |||||
* | | Effects Core: Do not overwrite css or class changes that aren't animated ↵ | ddstreet | 2011-10-25 | 1 | -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 empty | Corey Frang | 2011-09-29 | 1 | -1/+1 |
| | | |||||
* | | Effect core: Making animate class cross-frame safe, style guidence | Corey Frang | 2011-09-29 | 1 | -3/+3 |
|/ | |||||
* | Effects: Adding a check to retain focused elements after wrapping and ↵ | Corey Frang | 2011-08-02 | 1 | -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 Frang | 2011-06-23 | 1 | -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 ↵ | gnarf | 2011-06-21 | 1 | -1/+13 |
| | | | | passed into an effect | ||||
* | Effects.*: Updating Effect Method API to avoid duplicating the queue call - ↵ | gnarf | 2011-06-21 | 1 | -1/+6 |
| | | | | Fixes #7318 - Add the queue functions to $.fn.effect() | ||||
* | effects.core: Convert elements height/width to px and restore after ↵ | tomykaira | 2011-06-09 | 1 | -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 ↵ | gnarf | 2011-05-18 | 1 | -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ález | 2011-05-12 | 1 | -1/+1 |
| | |||||
* | effects.core: Rework animateClass to support a 'children' option - Fixes ↵ | gnarf | 2011-05-12 | 1 | -19/+49 |
| | | | | #3939 - Option to animate children elements in animateClass | ||||
* | Effects.core: Style Commit - double-quotes and threeqals and whitespace | gnarf | 2011-05-12 | 1 | -65/+65 |
| | |||||
* | Class animation: Cleaned up detection of what we can animate and fixed ↵ | gnarf | 2011-05-11 | 1 | -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ález | 2011-04-27 | 1 | -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 ↵ | gnarf | 2011-03-15 | 1 | -6/+29 |
| | | | | $.effects[]. Fixes #7103 - Effects: Move effects to $.effects.effect[]. | ||||
* | effects.core: Another place where args.callback was used that escaped my ↵ | gnarf | 2011-03-11 | 1 | -3/+3 |
| | | | | first pass | ||||
* | Effects: Handle just passing an effect name. | Scott González | 2011-03-09 | 1 | -0/+5 |
| | |||||
* | effects.core: Style Guidance | gnarf | 2011-03-06 | 1 | -239/+286 |
| | |||||
* | Effects: Minor whitespace improvements | gnarf | 2011-03-05 | 1 | -1/+0 |
| | |||||
* | Cleaning up effects.core _normalizeArguments a bit more | gnarf | 2011-03-02 | 1 | -12/+18 |
| | |||||
* | Starting to clean up the internal API for animations | gnarf | 2011-03-02 | 1 | -33/+31 |
| | |||||
* | Updated copyright year. | Scott González | 2011-01-17 | 1 | -1/+1 |
| | |||||
* | Effects: Fixed queueing of class animations. Fixes #6748 - animateClass ↵ | Scott González | 2010-12-14 | 1 | -33/+31 |
| | | | | broken in 1.8.7. | ||||
* | Effects: set right/bottom to 'auto' so effects work with dir=rtl. Fixed ↵ | Kevin Dalman | 2010-12-13 | 1 | -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 Dovenmuehle | 2010-11-19 | 1 | -24/+32 |
| | | | | style. Fixed #6244 - switchClass queues incorrectly. | ||||
* | Effects: Allow named speeds to be 0. Fixes #6657 - Allow named speeds to be 0 | J. Ryan Stinnett | 2010-11-16 | 1 | -1/+1 |
| | |||||
* | Effects: Added borderColor to color animation list. Fixes #6164 - Effectts: ↵ | Scott González | 2010-10-08 | 1 | -1/+1 |
| | | | | Allow borderColor to be animated. | ||||
* | Effects: Jump to final state and execute callbacks when $.fx.off is set to ↵ | Scott González | 2010-10-04 | 1 | -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ález | 2010-09-20 | 1 | -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 - ↵ | malsup | 2010-08-09 | 1 | -4/+4 |
| | | | | show() function broken with "normal" speed | ||||
* | argument shifting is not done correctly when the options argument is not ↵ | kobrigo | 2010-07-16 | 1 | -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ález | 2010-07-14 | 1 | -1/+1 |
| | |||||
* | All: Define a local undefined variable inside the main closure. | Scott González | 2010-07-13 | 1 | -1/+1 |
| | |||||
* | Updated copyright headers to make it clear that you can choose between MIT ↵ | Scott González | 2010-07-09 | 1 | -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ález | 2010-03-04 | 1 | -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ález | 2010-02-18 | 1 | -1/+1 |
| | | | | Fixes #5192 - 1.8rc2 Toggle speed issue. | ||||
* | effects: fixed #4097 - bind/fold didnt work | Paul Bakaus | 2010-01-28 | 1 | -0/+1 |
| | |||||
* | Happy New Year | Richard Worth | 2010-01-20 | 1 | -1/+1 |
| | |||||
* | class animation: added scrollbar property filtering back in to prevent an ↵ | Scott González | 2009-11-16 | 1 | -2/+1 |
| | | | | error in IE. |