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
|
|
|
|
2011-09-10 01:47:49 -04:00
|
|
|
var Modal = function ( content, options ) {
|
2011-12-20 21:02:47 -05:00
|
|
|
this.options = $.extend({}, $.fn.modal.defaults, options)
|
2011-09-11 23:08:43 -04:00
|
|
|
this.$element = $(content)
|
2011-11-24 23:04:07 -05:00
|
|
|
.delegate('[data-dismiss="modal"]', 'click.dismiss.modal', $.proxy(this.hide, this))
|
2011-08-27 02:57:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Modal.prototype = {
|
|
|
|
|
2011-12-01 01:42:22 -05:00
|
|
|
constructor: Modal
|
|
|
|
|
|
|
|
, toggle: function () {
|
2011-09-11 23:08:43 -04:00
|
|
|
return this[!this.isShown ? 'show' : 'hide']()
|
|
|
|
}
|
2011-09-11 01:14:57 -04:00
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
, show: function () {
|
|
|
|
var that = this
|
2011-11-24 23:04:07 -05:00
|
|
|
|
|
|
|
if (this.isShown) return
|
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
this.isShown = true
|
|
|
|
this.$element.trigger('show')
|
2011-09-10 21:13:37 -04:00
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
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 ?
|
2011-11-20 23:58:04 -05:00
|
|
|
that.$element.one($.support.transition.end, function () { that.$element.trigger('shown') }) :
|
2011-11-20 21:19:50 -05:00
|
|
|
that.$element.trigger('shown')
|
|
|
|
|
|
|
|
})
|
2011-09-11 23:08:43 -04:00
|
|
|
}
|
2011-09-10 01:47:49 -04:00
|
|
|
|
2011-11-24 23:04:07 -05:00
|
|
|
, hide: function ( e ) {
|
2011-09-11 23:08:43 -04:00
|
|
|
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
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
var that = this
|
|
|
|
this.isShown = false
|
2011-08-27 02:57:35 -04:00
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
escape.call(this)
|
2011-08-27 02:57:35 -04:00
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
this.$element
|
|
|
|
.trigger('hide')
|
|
|
|
.removeClass('in')
|
2011-08-27 02:57:35 -04:00
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
$.support.transition && this.$element.hasClass('fade') ?
|
2011-11-20 21:19:50 -05:00
|
|
|
hideWithTransition.call(this) :
|
|
|
|
hideModal.call(this)
|
2011-09-11 23:08:43 -04:00
|
|
|
}
|
2011-08-27 02:57:35 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* MODAL PRIVATE METHODS
|
|
|
|
* ===================== */
|
|
|
|
|
2011-11-20 21:19:50 -05:00
|
|
|
function hideWithTransition() {
|
2011-09-11 23:08:43 -04:00
|
|
|
var that = this
|
2011-11-20 21:19:50 -05:00
|
|
|
, timeout = setTimeout(function () {
|
2011-12-20 22:37:41 -05:00
|
|
|
that.$element.off($.support.transition.end)
|
2011-11-20 21:19:50 -05:00
|
|
|
hideModal.call(that)
|
|
|
|
}, 500)
|
|
|
|
|
2011-11-20 23:58:04 -05:00
|
|
|
this.$element.one($.support.transition.end, function () {
|
2011-11-20 21:19:50 -05:00
|
|
|
clearTimeout(timeout)
|
|
|
|
hideModal.call(that)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
function hideModal( that ) {
|
2011-11-20 21:19:50 -05:00
|
|
|
this.$element
|
|
|
|
.hide()
|
|
|
|
.trigger('hidden')
|
|
|
|
|
|
|
|
backdrop.call(this)
|
|
|
|
}
|
2011-10-20 00:56:06 -04:00
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
function backdrop( callback ) {
|
2011-11-20 21:19:50 -05:00
|
|
|
var that = this
|
|
|
|
, animate = this.$element.hasClass('fade') ? 'fade' : ''
|
2011-11-24 23:04:07 -05:00
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
if (this.isShown && this.options.backdrop) {
|
2011-10-05 00:48:53 -04:00
|
|
|
var doAnimate = $.support.transition && animate
|
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
|
|
|
|
.appendTo(document.body)
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
if (this.options.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 ?
|
2011-11-20 23:58:04 -05:00
|
|
|
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) {
|
2011-09-11 23:08:43 -04:00
|
|
|
this.$backdrop.removeClass('in')
|
2011-08-27 02:57:35 -04:00
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
$.support.transition && this.$element.hasClass('fade')?
|
2011-11-20 23:58:04 -05:00
|
|
|
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-09-11 23:08:43 -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
|
2011-10-20 00:56:06 -04:00
|
|
|
}
|
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
function escape() {
|
|
|
|
var that = this
|
2011-12-20 21:02:47 -05:00
|
|
|
if (this.isShown && this.options.keyboard) {
|
2011-12-20 22:37:41 -05:00
|
|
|
$(document).on('keyup.dismiss.modal', function ( e ) {
|
2011-11-24 23:04:07 -05:00
|
|
|
e.which == 27 && that.hide()
|
2011-09-11 23:08:43 -04:00
|
|
|
})
|
2011-11-24 23:04:07 -05:00
|
|
|
} else if (!this.isShown) {
|
2011-12-20 22:37:41 -05:00
|
|
|
$(document).off('keyup.dismiss.modal')
|
2011-09-11 23:08:43 -04:00
|
|
|
}
|
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-12-20 21:02:47 -05:00
|
|
|
else if (data.options.show) data.show()
|
2011-11-24 23:04:07 -05:00
|
|
|
})
|
2011-08-27 02:57:35 -04:00
|
|
|
}
|
|
|
|
|
2011-08-27 16:03:06 -04:00
|
|
|
$.fn.modal.defaults = {
|
2011-11-24 23:04:07 -05:00
|
|
|
backdrop: true
|
|
|
|
, keyboard: true
|
|
|
|
, show: true
|
2011-08-27 16:03:06 -04:00
|
|
|
}
|
|
|
|
|
2011-11-24 23:04:07 -05:00
|
|
|
$.fn.modal.Modal = Modal
|
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
|
2011-11-24 23:04:07 -05:00
|
|
|
/* MODAL DATA-API
|
|
|
|
* ============== */
|
2011-09-11 23:08:43 -04:00
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
$(function () {
|
|
|
|
$('body').on('click.modal.data-api', '[data-toggle="modal"]', function ( e ) {
|
2011-11-20 23:58:04 -05:00
|
|
|
var $this = $(this)
|
2011-11-27 20:04:55 -05:00
|
|
|
, 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)
|
2011-09-11 23:08:43 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2011-12-20 21:02:47 -05:00
|
|
|
}( window.jQuery )
|