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:
nicksahler 2014-03-19 08:07:49 -04:00
parent 91ad372c36
commit fbbac37762

View File

@ -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) {