1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-22 13:13:03 +02:00

add the dhg flavor back

This commit is contained in:
Jacob Thornton
2011-09-10 19:01:16 -07:00
parent 235246d6fc
commit a71d5d8e99
6 changed files with 43 additions and 16 deletions

31
js/bootstrap-modal.js vendored
View File

@@ -59,16 +59,17 @@
this.isShown = true
_.escape.call(this)
_.backdrop.call(this)
_.backdrop.call(this, function () {
that.$element
.appendTo(document.body)
.show()
this.$element
.appendTo(document.body)
.show()
setTimeout(function () {
that.$element.addClass('in').trigger('modal:shown')
that.$backdrop && that.$backdrop.addClass('in')
}, 1)
setTimeout(function () {
that.$element
.addClass('in')
.trigger('modal:shown')
}, 1)
})
return this
}
@@ -81,7 +82,6 @@
this.isShown = false
_.escape.call(this)
_.backdrop.call(this)
this.$element.removeClass('in')
@@ -89,6 +89,8 @@
that.$element
.detach()
.trigger('modal:hidden')
_.backdrop.call(that)
}
$.support.transition && this.$element.hasClass('fade') ?
@@ -106,13 +108,20 @@
var _ = {
backdrop: function () {
backdrop: function ( callback ) {
var that = this
, animate = this.$element.hasClass('fade') ? 'fade' : ''
if ( this.isShown && this.settings.backdrop ) {
this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
.click($.proxy(this.hide, this))
.appendTo(document.body)
setTimeout(function () {
that.$backdrop && that.$backdrop.addClass('in')
$.support.transition && that.$backdrop.hasClass('fade') ?
that.$backdrop.one(transitionEnd, callback) :
callback()
})
} else if ( !this.isShown && this.$backdrop ) {
this.$backdrop.removeClass('in')