2011-09-11 01:24:31 -04:00
|
|
|
/* =========================================================
|
2012-06-01 14:04:27 -04:00
|
|
|
* bootstrap-modal.js v2.0.4
|
2012-01-24 14:08:03 -05:00
|
|
|
* http://twitter.github.com/bootstrap/javascript.html#modals
|
2011-09-11 01:24:31 -04:00
|
|
|
* =========================================================
|
2012-01-15 02:28:48 -05:00
|
|
|
* Copyright 2012 Twitter, Inc.
|
2011-09-11 01:24:31 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* ========================================================= */
|
|
|
|
|
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
!function ($) {
|
|
|
|
|
|
|
|
"use strict"; // jshint ;_;
|
2011-08-27 02:57:35 -04:00
|
|
|
|
2011-11-20 21:19:50 -05:00
|
|
|
|
2011-11-24 23:04:07 -05:00
|
|
|
/* MODAL CLASS DEFINITION
|
|
|
|
* ====================== */
|
2011-08-27 02:57:35 -04:00
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
var Modal = function (content, options) {
|
2012-02-06 03:17:31 -05:00
|
|
|
this.options = 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
|
2012-03-24 20:50:21 -04:00
|
|
|
, e = $.Event('show')
|
2011-11-24 23:04:07 -05:00
|
|
|
|
2012-03-24 20:50:21 -04:00
|
|
|
this.$element.trigger(e)
|
|
|
|
|
|
|
|
if (this.isShown || e.isDefaultPrevented()) return
|
2011-11-24 23:04:07 -05:00
|
|
|
|
2012-01-28 15:08:41 -05:00
|
|
|
$('body').addClass('modal-open')
|
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
this.isShown = true
|
2011-09-10 21:13:37 -04:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
this.escape()
|
|
|
|
|
|
|
|
this.backdrop(function () {
|
2011-11-20 21:19:50 -05:00
|
|
|
var transition = $.support.transition && that.$element.hasClass('fade')
|
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
if (!that.$element.parent().length) {
|
|
|
|
that.$element.appendTo(document.body) //don't move modals dom position
|
|
|
|
}
|
2012-01-08 17:36:41 -05:00
|
|
|
|
2011-11-20 21:19:50 -05:00
|
|
|
that.$element
|
|
|
|
.show()
|
|
|
|
|
|
|
|
if (transition) {
|
|
|
|
that.$element[0].offsetWidth // force reflow
|
|
|
|
}
|
|
|
|
|
|
|
|
that.$element.addClass('in')
|
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
that.enforceFocus()
|
|
|
|
|
2011-11-20 21:19:50 -05:00
|
|
|
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
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
, hide: function (e) {
|
2011-09-11 23:08:43 -04:00
|
|
|
e && e.preventDefault()
|
2011-08-27 02:57:35 -04:00
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
var that = this
|
2012-03-24 20:50:21 -04:00
|
|
|
|
|
|
|
e = $.Event('hide')
|
|
|
|
|
|
|
|
this.$element.trigger(e)
|
|
|
|
|
|
|
|
if (!this.isShown || e.isDefaultPrevented()) return
|
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
this.isShown = false
|
2011-08-27 02:57:35 -04:00
|
|
|
|
2012-01-28 15:08:41 -05:00
|
|
|
$('body').removeClass('modal-open')
|
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
this.escape()
|
2012-05-16 22:43:22 -04:00
|
|
|
|
|
|
|
$(document).off('focusin.modal')
|
2011-08-27 02:57:35 -04:00
|
|
|
|
2012-03-24 20:50:21 -04:00
|
|
|
this.$element.removeClass('in')
|
2011-08-27 02:57:35 -04:00
|
|
|
|
2011-09-11 23:08:43 -04:00
|
|
|
$.support.transition && this.$element.hasClass('fade') ?
|
2012-05-16 22:09:57 -04:00
|
|
|
this.hideWithTransition() :
|
|
|
|
this.hideModal()
|
2011-09-11 23:08:43 -04:00
|
|
|
}
|
2011-08-27 02:57:35 -04:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
, enforceFocus: function () {
|
|
|
|
var that = this
|
|
|
|
$(document).on('focusin.modal', function (e) {
|
|
|
|
if (that.$element[0] !== e.target && !that.$element.has(e.target).length) {
|
|
|
|
that.$element.focus()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2011-11-20 21:19:50 -05:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
, escape: function () {
|
|
|
|
var that = this
|
|
|
|
if (this.isShown && this.options.keyboard) {
|
|
|
|
$(document).on('keyup.dismiss.modal', function ( e ) {
|
|
|
|
e.which == 27 && that.hide()
|
|
|
|
})
|
|
|
|
} else if (!this.isShown) {
|
|
|
|
$(document).off('keyup.dismiss.modal')
|
|
|
|
}
|
|
|
|
}
|
2011-11-20 21:19:50 -05:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
, hideWithTransition: function () {
|
|
|
|
var that = this
|
|
|
|
, timeout = setTimeout(function () {
|
|
|
|
that.$element.off($.support.transition.end)
|
|
|
|
that.hideModal()
|
|
|
|
}, 500)
|
|
|
|
|
|
|
|
this.$element.one($.support.transition.end, function () {
|
|
|
|
clearTimeout(timeout)
|
|
|
|
that.hideModal()
|
|
|
|
})
|
|
|
|
}
|
2011-11-20 21:19:50 -05:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
, hideModal: function (that) {
|
|
|
|
this.$element
|
|
|
|
.hide()
|
|
|
|
.trigger('hidden')
|
2011-10-20 00:56:06 -04:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
this.backdrop()
|
|
|
|
}
|
2011-11-24 23:04:07 -05:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
, removeBackdrop: function () {
|
|
|
|
this.$backdrop.remove()
|
|
|
|
this.$backdrop = null
|
|
|
|
}
|
2011-10-05 00:48:53 -04:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
, backdrop: function (callback) {
|
|
|
|
var that = this
|
|
|
|
, animate = this.$element.hasClass('fade') ? 'fade' : ''
|
2011-09-11 23:08:43 -04:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
if (this.isShown && this.options.backdrop) {
|
|
|
|
var doAnimate = $.support.transition && animate
|
2011-10-05 00:48:53 -04:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
|
|
|
|
.appendTo(document.body)
|
2011-10-05 00:48:53 -04:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
if (this.options.backdrop != 'static') {
|
|
|
|
this.$backdrop.click($.proxy(this.hide, this))
|
|
|
|
}
|
2011-10-05 00:48:53 -04:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
|
2011-10-05 00:48:53 -04:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
this.$backdrop.addClass('in')
|
2011-08-27 02:57:35 -04:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
doAnimate ?
|
|
|
|
this.$backdrop.one($.support.transition.end, callback) :
|
|
|
|
callback()
|
2011-11-20 21:19:50 -05:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
} else if (!this.isShown && this.$backdrop) {
|
|
|
|
this.$backdrop.removeClass('in')
|
2011-08-27 02:57:35 -04:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
$.support.transition && this.$element.hasClass('fade')?
|
|
|
|
this.$backdrop.one($.support.transition.end, $.proxy(this.removeBackdrop, this)) :
|
|
|
|
this.removeBackdrop()
|
2011-10-20 00:56:06 -04:00
|
|
|
|
2012-05-16 22:09:57 -04:00
|
|
|
} else if (callback) {
|
|
|
|
callback()
|
|
|
|
}
|
|
|
|
}
|
2011-08-27 02:57:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* MODAL PLUGIN DEFINITION
|
|
|
|
* ======================= */
|
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
$.fn.modal = function (option) {
|
2011-11-24 23:04:07 -05:00
|
|
|
return this.each(function () {
|
|
|
|
var $this = $(this)
|
|
|
|
, data = $this.data('modal')
|
2012-02-12 14:15:12 -05:00
|
|
|
, options = $.extend({}, $.fn.modal.defaults, $this.data(), typeof option == 'object' && option)
|
2011-11-24 23:04:07 -05:00
|
|
|
if (!data) $this.data('modal', (data = new Modal(this, options)))
|
|
|
|
if (typeof option == 'string') data[option]()
|
2012-02-06 03:17:31 -05:00
|
|
|
else if (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
|
2012-02-06 03:17:31 -05:00
|
|
|
, show: true
|
2011-08-27 16:03:06 -04:00
|
|
|
}
|
|
|
|
|
2011-12-21 02:28:48 -05:00
|
|
|
$.fn.modal.Constructor = Modal
|
2011-11-24 23:04:07 -05:00
|
|
|
|
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 ) {
|
2012-01-28 04:35:13 -05:00
|
|
|
var $this = $(this), href
|
|
|
|
, $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
|
2011-12-21 02:28:48 -05:00
|
|
|
, option = $target.data('modal') ? 'toggle' : $.extend({}, $target.data(), $this.data())
|
|
|
|
|
2011-11-24 23:04:07 -05:00
|
|
|
e.preventDefault()
|
2011-12-21 02:28:48 -05:00
|
|
|
$target.modal(option)
|
2011-09-11 23:08:43 -04:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
}(window.jQuery);
|