aboutsummaryrefslogtreecommitdiffstats
path: root/src/effects.js
Commit message (Collapse)AuthorAgeFilesLines
* CSS: Support relative adjustment in any applicable unitMr212015-03-091-52/+5
| | | | | | | | | | | Fixes gh-1711 Closes gh-2011 (cherry picked from commit 9b03f6df88a8d9dbda3f7893cdd84e3a3c70da17) Conflicts: src/css.js src/effects.js
* Misc: Drop support for older browsers; update support commentsMichał Gołębiowski2014-12-081-18/+9
| | | | | | | | | | That includes IE<8, Opera 12.x, Firefox<29, Safari<6.0 and some hacks for old Blackberry. Fixes gh-1836 Fixes gh-1701 Refs gh-1815 Refs gh-1820
* Build: update grunt-jscs-checker and pass with the new rulesTimmy Willison2014-07-171-5/+12
| | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: build/tasks/build.js src/ajax/xhr.js src/attributes/classes.js src/attributes/prop.js src/attributes/val.js src/core/init.js src/core/ready.js src/css.js src/css/curCSS.js src/css/defaultDisplay.js src/data.js src/data/var/dataPriv.js src/data/var/dataUser.js src/dimensions.js src/effects.js src/event.js src/manipulation.js src/offset.js src/queue.js src/selector-native.js test/data/testrunner.js
* Effects: Improve raf logicOleg Gaidarenko2014-06-161-24/+18
| | | | | | | | * Make animation behave as if jQuery.fx.off = true if document is hidden * Use cancelAnimationFrame in jQuery.fx.stop Ref 708764f47b0c8de152bbb444d0f608db558b76ed
* Effects: Reintroduce use of requestAnimationFrameOleg Gaidarenko2014-06-161-1/+25
| | | | | | | | | | | Same as before, just use don't use prefixes, since they pretty match useless now and use page visibility API to determine if animation should start. Also null the requestAnimationFrame attribute in window for tests since sinon does not provide fake method for it. Fixes #15147 Ref 72119e0023dcc0d9807caf6d988598b74abdc937
* Effects: Respect display value on inline elementsOleg Gaidarenko2014-04-301-3/+6
| | | | | | | | | | | | Take "olddisplay" value into the account Fixes #14824 Closes gh-1566 Ref 73fe17299a840a8a7f3ffffcac15e32a88bd3d66 (cherry-picked from c34dbf5a8d135e0f873ab7a76d1c8f8e316f31e4) Conflicts: src/effects.js
* Effects: Fix inline element animationsRichard Gibson2014-03-241-2/+2
| | | | | Ref 80cf965e02e71dc1b11bf8c1b3d216b9ab4e99ac Ref #14848
* Effects: Don't overwrite display:none when .hide()ing hidden elementsRichard Gibson2014-03-201-5/+10
| | | | | | | | | Fixes #14848 Closes gh-1548 (cherry picked from commit 890d441aa5d319e49951ba6f0ec719cd4cb96759) Conflicts: src/effects.js
* Effects: First step() call should match :animated selectorDave Methvin2014-01-091-1/+4
| | | | | | | (cherry picked from commit 085814474e4a854d533b5ccbaef24c090081e0c4) Fixes #14623 Closes gh-1473
* Fix some code style inconsistenciesOleg2013-11-071-6/+4
|
* Fixes #14450. Remove CommonJS+AMD syntax.Timmy Willison2013-10-151-16/+15
| | | | | | | | | | | | - To keep file size unaffected, an extra pragma was added to build.js to remove certain lines when building with special comments. Conflicts: src/core.js src/css.js src/effects.js src/event.js src/manipulation.js src/offset.js
* Ensure display: inline-block when animating width/height on inline elements. ↵Timmy Willison2013-09-101-3/+8
| | | | Fixes #14344.
* Separate jQuery.fn.init into its own module (for lighter core dependencies ↵Timmy Willison2013-09-091-1/+2
| | | | | | | | | | across all modules). Restore proper support property for effects. Conflicts: src/attributes/classes.js src/core.js src/manipulation.js src/traversing.js
* Apply consistent ordering in all modules. -219 bytes. Order modules like ↵Timmy Willison2013-09-091-219/+219
| | | | functions > jQuery.extend > jQuery.fn.extend.
* Break jQuery.access out into its own module to separate it from core; Adjust ↵Timmy Willison2013-09-091-15/+18
| | | | | | | | | | | | | CommonJS+AMD build support to include non-var dependencies. Convert modules with more than a few dependencies to use CJS+AMD syntax. Conflicts: src/core.js src/css.js src/data.js src/effects.js src/event.js src/manipulation.js src/traversing.js
* Always return jQuery in modules that can be included separatelyTimmy Willison2013-09-081-1/+1
| | | | | | | Conflicts: src/attributes.js src/data.js src/manipulation.js
* Fix #10814. Fix #14084. Make support tests lazy and broken out to components.Michał Gołębiowski2013-09-061-4/+5
|
* Fix #14318: Cherry-pick interrupted animation fix from master ↵Richard Gibson2013-08-301-1/+7
| | | | ea5c22ec12e6a548b1ec2d7b0dcd9f71bea8d5dd
* AMD-ify jQuery sourcegit s! Woo! Fixes #14113, #14163.Timmy Willison2013-08-151-115/+15
| | | | | | | | | | | | | | | | | | | | Conflicts: Gruntfile.js README.md src/ajax.js src/ajax/xhr.js src/attributes.js src/core.js src/css.js src/data.js src/effects.js src/event.js src/manipulation.js src/offset.js src/selector-native.js src/traversing.js test/unit/core.js test/unit/data.js
* Fix #13937: Correctly scope .finish() following multi-element .animate(). ↵Richard Gibson2013-05-281-5/+3
| | | | Thanks @gnarf37. Close gh-1279.
* Fix #13939: Same-unit relative animationsRichard Gibson2013-05-261-1/+1
|
* Fix #13855: line-height animations. Close gh-1265.Richard Gibson2013-05-131-61/+65
| | | | (cherry picked from commit 3971c2ebb2e6729fe80bac4ee7b91bc02f26486f)
* Update grunt-contrib-jshint to 0.3.0, ref gh-1204.Michał Gołębiowski2013-04-031-4/+4
|
* Fix #13355. Tweak Uglify options and var order for gzip. Close gh-1151.Oleg2013-01-311-2/+4
| | | | | Change uglify-js options for compressor Change variables initialization sequence for some declarations
* Fix #12846. Restore overflow when animation is stopped.Dave Methvin2013-01-261-1/+1
| | | | (Cherry picked from a6c358d)
* Fix #13183: Wrong animation initial value calc. Close gh-1136.Mike Sherov2013-01-151-2/+2
|
* No ticket: compress event.jsRichard Gibson2013-01-121-2/+2
|
* Fix #13103. Add .finish() method. Cherry picked from ↵Corey Frang2013-01-081-4/+55
| | | | b6abb31df4d5be80dc13844d9988fb0c990ae5ae.
* Pass style declarations around for performance improvements and paving the ↵Mike Sherov2012-12-111-2/+2
| | | | | | way for the css array signature Also, simplify the jQuery.css numeric coercion signature
* Fix #10417. setTimeout w/o 2nd arg is jQuery.later! Close gh-1065.Oleg2012-12-101-1/+1
|
* Fix #12959: Optimize library-wide patternsRichard Gibson2012-11-271-1/+1
|
* Fix #12803. Add jQuery.fx.start as a hook point. Close gh-1024.Corey Frang2012-11-251-2/+8
|
* Unroll the ( || ) in the math - Fixes #12497 - Thanks @lukemella ↵Corey Frang2012-11-071-1/+3
| | | | @curiousdannii - Closes gh-1019
* Keep track of a hiding state for toggle based animations - Fixes #8685Corey Frang2012-11-071-1/+10
| | | | Closes gh-1018
* Ensure each tick gets it's own fxNow - Fixes #12837 - Thanks @chadparryCorey Frang2012-11-071-0/+3
| | | | | Closes gh-1022 Closes gh-1021
* adds strict rule to jshint options (except for test files). "use strict" is ↵jaubourg2012-10-181-0/+1
| | | | added to the main jQuery closure and some "could-be-unsafe" `this` trickery in effects is silenced.
* no ticket: remove and enforce unused vars in jshintMike Sherov2012-10-171-2/+1
|
* Create private methods for processing data/removeData requests. Fixes ↵carldanley2012-10-161-1/+1
| | | | #12519, Closes gh-976
* fix effects tests failureMike Sherov2012-10-161-3/+1
|
* Fix #12447: Ensure starting-point calc takes finite time. Close gh-922.Richard Gibson2012-09-151-8/+7
|
* Fix #12370. Explicitly coerce bool/undef to integer.Dave Methvin2012-08-301-0/+1
|
* Fix #12273. Don't call easing functions for duration 0 animations. Close gh-895.Corey Frang2012-08-191-1/+7
|
* Moves isHidden to src/css.js and re-introduces its use. No ticket. Closes gh-876Oleg2012-07-251-5/+0
|
* Clean up regexen; use common regex for numbers. Close gh-862.Richard Gibson2012-07-221-1/+1
|
* Fix #9217. oldIE error when changing detached elements, close gh-861Corey Frang2012-07-221-0/+11
|
* Fix the logic to set overflow:hidden on width & height animations - Fixes ↵Corey Frang2012-07-201-1/+1
| | | | #12117 - Closes gh-869
* Fixes a variety of typographical problems. Closes gh-853Chris Faulkner2012-07-111-1/+1
|
* Follow the style guide, lose 72 bytes! Closes gh-840.Mike Sherov2012-07-091-2/+2
|
* Fix #11971: force numeric animation start to be numeric, closes gh-836.Richard Gibson2012-07-051-7/+7
|
* Completes #11799: Maybe .progress() was cooler than I thought.Corey Frang2012-06-251-1/+4
| | | | Generate a .progress() for each step of an animation, once all properties are changed. Closes gh-835.