summaryrefslogtreecommitdiffstats
path: root/module/web/static/js/views/abstract
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/static/js/views/abstract')
-rw-r--r--module/web/static/js/views/abstract/itemView.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/web/static/js/views/abstract/itemView.js b/module/web/static/js/views/abstract/itemView.js
index 77c6bb5e4..7740abe5e 100644
--- a/module/web/static/js/views/abstract/itemView.js
+++ b/module/web/static/js/views/abstract/itemView.js
@@ -17,11 +17,11 @@ define(['jquery', 'backbone', 'underscore'], function($, Backbone, _) {
hide: function() {
- this.$el.zapOut();
+ this.$el.slideUp();
},
show: function() {
- this.$el.zapIn();
+ this.$el.slideDown();
},