0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

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');