Merge pull request #555 from jfi/iss371

Adding fade transitions between settings tabs.
This commit is contained in:
Hannah Wolfe 2013-08-29 13:46:20 -07:00
commit 6c0434fc8f

View File

@ -86,7 +86,11 @@
this.$el.removeClass('active');
this.undelegateEvents();
},
render: function () {
this.$el.hide();
Ghost.View.prototype.render.call(this);
this.$el.fadeIn(300);
},
afterRender: function () {
this.$el.attr('id', this.id);
this.$el.addClass('active');