mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-21 18:54:30 +01:00
only fire hidden once backdrop has been removed
This commit is contained in:
parent
1bf070b4ce
commit
366e1e0a6d
17
docs/assets/js/bootstrap-modal.js
vendored
17
docs/assets/js/bootstrap-modal.js
vendored
@ -138,12 +138,13 @@
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
, hideModal: function (that) {
|
, hideModal: function () {
|
||||||
this.$element
|
var that = this
|
||||||
.hide()
|
this.$element.hide()
|
||||||
.trigger('hidden')
|
this.backdrop(function () {
|
||||||
|
that.removeBackdrop()
|
||||||
this.backdrop()
|
that.$element.trigger('hidden')
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
, removeBackdrop: function () {
|
, removeBackdrop: function () {
|
||||||
@ -181,8 +182,8 @@
|
|||||||
this.$backdrop.removeClass('in')
|
this.$backdrop.removeClass('in')
|
||||||
|
|
||||||
$.support.transition && this.$element.hasClass('fade')?
|
$.support.transition && this.$element.hasClass('fade')?
|
||||||
this.$backdrop.one($.support.transition.end, $.proxy(this.removeBackdrop, this)) :
|
this.$backdrop.one($.support.transition.end, callback) :
|
||||||
this.removeBackdrop()
|
callback()
|
||||||
|
|
||||||
} else if (callback) {
|
} else if (callback) {
|
||||||
callback()
|
callback()
|
||||||
|
17
docs/assets/js/bootstrap.js
vendored
17
docs/assets/js/bootstrap.js
vendored
@ -936,12 +936,13 @@
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
, hideModal: function (that) {
|
, hideModal: function () {
|
||||||
this.$element
|
var that = this
|
||||||
.hide()
|
this.$element.hide()
|
||||||
.trigger('hidden')
|
this.backdrop(function () {
|
||||||
|
that.removeBackdrop()
|
||||||
this.backdrop()
|
that.$element.trigger('hidden')
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
, removeBackdrop: function () {
|
, removeBackdrop: function () {
|
||||||
@ -979,8 +980,8 @@
|
|||||||
this.$backdrop.removeClass('in')
|
this.$backdrop.removeClass('in')
|
||||||
|
|
||||||
$.support.transition && this.$element.hasClass('fade')?
|
$.support.transition && this.$element.hasClass('fade')?
|
||||||
this.$backdrop.one($.support.transition.end, $.proxy(this.removeBackdrop, this)) :
|
this.$backdrop.one($.support.transition.end, callback) :
|
||||||
this.removeBackdrop()
|
callback()
|
||||||
|
|
||||||
} else if (callback) {
|
} else if (callback) {
|
||||||
callback()
|
callback()
|
||||||
|
2
docs/assets/js/bootstrap.min.js
vendored
2
docs/assets/js/bootstrap.min.js
vendored
File diff suppressed because one or more lines are too long
17
js/bootstrap-modal.js
vendored
17
js/bootstrap-modal.js
vendored
@ -138,12 +138,13 @@
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
, hideModal: function (that) {
|
, hideModal: function () {
|
||||||
this.$element
|
var that = this
|
||||||
.hide()
|
this.$element.hide()
|
||||||
.trigger('hidden')
|
this.backdrop(function () {
|
||||||
|
that.removeBackdrop()
|
||||||
this.backdrop()
|
that.$element.trigger('hidden')
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
, removeBackdrop: function () {
|
, removeBackdrop: function () {
|
||||||
@ -181,8 +182,8 @@
|
|||||||
this.$backdrop.removeClass('in')
|
this.$backdrop.removeClass('in')
|
||||||
|
|
||||||
$.support.transition && this.$element.hasClass('fade')?
|
$.support.transition && this.$element.hasClass('fade')?
|
||||||
this.$backdrop.one($.support.transition.end, $.proxy(this.removeBackdrop, this)) :
|
this.$backdrop.one($.support.transition.end, callback) :
|
||||||
this.removeBackdrop()
|
callback()
|
||||||
|
|
||||||
} else if (callback) {
|
} else if (callback) {
|
||||||
callback()
|
callback()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user