1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/js/bootstrap-modal.js

202 lines
5.1 KiB
JavaScript
Raw Normal View History

2011-09-11 01:24:31 -04:00
/* =========================================================
2011-11-21 00:13:28 -05:00
* bootstrap-modal.js v2.0.0
2011-09-11 01:24:31 -04:00
* http://twitter.github.com/bootstrap/javascript.html#modal
* =========================================================
* Copyright 2011 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================= */
2011-10-05 00:48:53 -04:00
!function( $ ){
2011-08-27 02:57:35 -04:00
2011-11-20 21:19:50 -05:00
"use strict"
2011-11-24 23:04:07 -05:00
/* MODAL CLASS DEFINITION
* ====================== */
2011-08-27 02:57:35 -04:00
var Modal = function ( content, options ) {
2011-10-05 00:48:53 -04:00
this.settings = $.extend({}, $.fn.modal.defaults, options)
this.$element = $(content)
2011-11-24 23:04:07 -05:00
.delegate('[data-dismiss="modal"]', 'click.dismiss.modal', $.proxy(this.hide, this))
this.settings.show && this.show()
2011-08-27 02:57:35 -04:00
}
Modal.prototype = {
toggle: function () {
return this[!this.isShown ? 'show' : 'hide']()
}
2011-09-11 01:14:57 -04:00
, show: function () {
var that = this
2011-11-24 23:04:07 -05:00
if (this.isShown) return
this.isShown = true
this.$element.trigger('show')
escape.call(this)
2011-11-20 21:19:50 -05:00
backdrop.call(this, function () {
var transition = $.support.transition && that.$element.hasClass('fade')
that.$element
.appendTo(document.body)
.show()
if (transition) {
that.$element[0].offsetWidth // force reflow
}
that.$element.addClass('in')
transition ?
that.$element.one($.support.transition.end, function () { that.$element.trigger('shown') }) :
2011-11-20 21:19:50 -05:00
that.$element.trigger('shown')
})
}
2011-11-24 23:04:07 -05:00
, hide: function ( e ) {
e && e.preventDefault()
2011-08-27 02:57:35 -04:00
2011-11-24 23:04:07 -05:00
if (!this.isShown) return
2011-10-05 00:48:53 -04:00
var that = this
this.isShown = false
2011-08-27 02:57:35 -04:00
escape.call(this)
2011-08-27 02:57:35 -04:00
this.$element
.trigger('hide')
.removeClass('in')
2011-08-27 02:57:35 -04:00
$.support.transition && this.$element.hasClass('fade') ?
2011-11-20 21:19:50 -05:00
hideWithTransition.call(this) :
hideModal.call(this)
}
2011-08-27 02:57:35 -04:00
}
/* MODAL PRIVATE METHODS
* ===================== */
2011-11-20 21:19:50 -05:00
function hideWithTransition() {
var that = this
2011-11-20 21:19:50 -05:00
, timeout = setTimeout(function () {
that.$element.unbind($.support.transition.end)
2011-11-20 21:19:50 -05:00
hideModal.call(that)
}, 500)
this.$element.one($.support.transition.end, function () {
2011-11-20 21:19:50 -05:00
clearTimeout(timeout)
hideModal.call(that)
})
}
function hideModal (that) {
this.$element
.hide()
.trigger('hidden')
backdrop.call(this)
}
2011-11-20 21:19:50 -05:00
function backdrop ( callback ) {
var that = this
, animate = this.$element.hasClass('fade') ? 'fade' : ''
2011-11-24 23:04:07 -05:00
if (this.isShown && this.settings.backdrop) {
2011-10-05 00:48:53 -04:00
var doAnimate = $.support.transition && animate
this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
.appendTo(document.body)
2011-11-24 23:04:07 -05:00
if (this.settings.backdrop != 'static') {
2011-10-05 00:48:53 -04:00
this.$backdrop.click($.proxy(this.hide, this))
}
2011-11-24 23:04:07 -05:00
if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
2011-10-05 00:48:53 -04:00
this.$backdrop.addClass('in')
doAnimate ?
this.$backdrop.one($.support.transition.end, callback) :
2011-10-05 00:48:53 -04:00
callback()
2011-11-24 23:04:07 -05:00
} else if (!this.isShown && this.$backdrop) {
this.$backdrop.removeClass('in')
2011-08-27 02:57:35 -04:00
$.support.transition && this.$element.hasClass('fade')?
this.$backdrop.one($.support.transition.end, $.proxy(removeBackdrop, this)) :
2011-11-20 21:19:50 -05:00
removeBackdrop.call(this)
2011-11-24 23:04:07 -05:00
} else if (callback) {
callback()
2011-08-27 02:57:35 -04:00
}
}
2011-08-27 02:57:35 -04:00
2011-11-20 21:19:50 -05:00
function removeBackdrop() {
this.$backdrop.remove()
this.$backdrop = null
}
function escape() {
var that = this
2011-11-24 23:04:07 -05:00
if (this.isShown && this.settings.keyboard) {
$(document).bind('keyup.dismiss.modal', function ( e ) {
e.which == 27 && that.hide()
})
2011-11-24 23:04:07 -05:00
} else if (!this.isShown) {
$(document).unbind('keyup.dismiss.modal')
}
2011-08-27 02:57:35 -04:00
}
/* MODAL PLUGIN DEFINITION
* ======================= */
2011-11-24 23:04:07 -05:00
$.fn.modal = function ( option ) {
return this.each(function () {
var $this = $(this)
, data = $this.data('modal')
, options = typeof option == 'object' && option
if (!data) $this.data('modal', (data = new Modal(this, options)))
if (typeof option == 'string') data[option]()
})
2011-08-27 02:57:35 -04:00
}
$.fn.modal.defaults = {
2011-11-24 23:04:07 -05:00
backdrop: true
, keyboard: true
, show: true
}
2011-11-24 23:04:07 -05:00
$.fn.modal.Modal = Modal
2011-11-24 23:04:07 -05:00
/* MODAL DATA-API
* ============== */
2011-11-20 21:19:50 -05:00
$(document).ready(function () {
2011-11-24 23:04:07 -05:00
$('body').delegate('[data-toggle="modal"]', 'click.modal.data-api', function ( e ) {
var $this = $(this)
, target = $this.attr('data-target') || $this.attr('href')
2011-11-24 23:12:13 -05:00
, option = $(target).data('modal') ? 'toggle' : $this.data()
2011-11-24 23:04:07 -05:00
e.preventDefault()
2011-11-24 23:12:13 -05:00
$(target).modal(option)
})
})
}( window.jQuery || window.ender )