mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-03 16:38:22 +03:00
Fixes modal fading inconsistency problem by disabling jQuery's
transition and allowing CSS to do its thing closes #2400 - Removed fadeIn, jQuery's animation - Added show(), which only manages display, giving transitions to CSS
This commit is contained in:
parent
91ad372c36
commit
fbbac37762
@ -316,7 +316,7 @@
|
||||
},
|
||||
afterRender: function () {
|
||||
this.$el.fadeIn(50);
|
||||
$(".modal-background").fadeIn(10, function () {
|
||||
$(".modal-background").show(10, function () {
|
||||
$(this).addClass("in");
|
||||
});
|
||||
if (this.model.options.confirm) {
|
||||
|
Loading…
Reference in New Issue
Block a user