diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-01-12 21:20:41 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-01-12 21:20:41 +0100 |
commit | 8a40b530aebc974e4c5b140d30f12573705b6c27 (patch) | |
tree | 33f0142b22135aab00e2e1c9054e2233cff8b9c1 /module/web/static/js/utils | |
parent | render the settings menu (diff) | |
download | pyload-8a40b530aebc974e4c5b140d30f12573705b6c27.tar.xz |
added animation for packages
Diffstat (limited to 'module/web/static/js/utils')
-rw-r--r-- | module/web/static/js/utils/animations.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/module/web/static/js/utils/animations.js b/module/web/static/js/utils/animations.js index a1ec5d5e1..aa48c6f00 100644 --- a/module/web/static/js/utils/animations.js +++ b/module/web/static/js/utils/animations.js @@ -1,14 +1,5 @@ define(['jquery', 'underscore', 'transit'], function(jQuery, _) { - // Overwrite common animations with transitions - jQuery.each({ - fadeIn: { opacity: "show" }, - fadeOut: { opacity: "hide" } - }, function(name, props) { - jQuery.fn[ name ] = function(speed, easing, callback) { - return this.transition(props, speed, easing, callback); - }; - }); // TODO: sloppy chaining // in functions not possible without previous out |