summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/utils
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/static/js/utils')
-rw-r--r--module/web/static/js/utils/animations.js9
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