Home | History | Annotate | Download | only in bench

Lines Matching defs:backdrop

727         backdrop.call(this, function () {
798 backdrop.call(this)
801 function backdrop(callback) {
805 if (this.isShown && this.options.backdrop) {
808 this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
811 if (this.options.backdrop != 'static') {
812 this.$backdrop.click($.proxy(this.hide, this))
815 if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
817 this.$backdrop.addClass('in')
820 this.$backdrop.one($.support.transition.end, callback) :
823 } else if (!this.isShown && this.$backdrop) {
824 this.$backdrop.removeClass('in')
827 this.$backdrop.one($.support.transition.end, $.proxy(removeBackdrop, this)) :
836 this.$backdrop.remove()
837 this.$backdrop = null
867 backdrop: true