diff options
Diffstat (limited to 'module/web/static/js/views')
-rw-r--r-- | module/web/static/js/views/abstract/itemView.js | 4 | ||||
-rw-r--r-- | module/web/static/js/views/headerView.js | 5 |
2 files changed, 4 insertions, 5 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(); }, diff --git a/module/web/static/js/views/headerView.js b/module/web/static/js/views/headerView.js index dd1030220..7effcf79d 100644 --- a/module/web/static/js/views/headerView.js +++ b/module/web/static/js/views/headerView.js @@ -77,12 +77,11 @@ define(['jquery', 'backbone', 'flot'], function($, Backbone) { }, show_taskList: function() { - // TODO: fix animation - this.$('.popover').transit({'opacity': 'show'}); + this.$('.popover').fadeIn(); }, hide_taskList: function() { - this.$('.popover').transit({'opacity': 'hide'}); + this.$('.popover').fadeOut(); }, open_grabber: function() { |