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:
commit
6c0434fc8f
1 changed files with 5 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Add table
Reference in a new issue