twbs--bootstrap/js/bootstrap-modal.js

162 lines
3.8 KiB
JavaScript
Raw Normal View History

2011-08-27 06:57:35 +00:00
(function( $ ){
2011-08-28 23:47:38 +00:00
/* CSS TRANSITION SUPPORT (https://gist.github.com/373874)
* ======================================================= */
var transitionEnd
$(function () {
$.support.transition = (function () {
var thisBody = document.body || document.documentElement
, thisStyle = thisBody.style
, support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined
return support
})()
// set CSS transition event type
if ( $.support.transition ) {
transitionEnd = "TransitionEnd"
if ( $.browser.webkit ) {
transitionEnd = "webkitTransitionEnd"
} else if ( $.browser.mozilla ) {
transitionEnd = "transitionend"
} else if ( $.browser.opera ) {
transitionEnd = "oTransitionEnd"
}
2011-08-27 06:57:35 +00:00
}
2011-08-28 23:47:38 +00:00
})
2011-08-27 06:57:35 +00:00
/* MODAL PUBLIC CLASS DEFINITION
* ============================= */
var Modal = function ( content, options ) {
this.settings = $.extend({}, $.fn.modal.defaults)
2011-08-27 06:57:35 +00:00
if ( options ) {
2011-08-27 06:57:35 +00:00
$.extend( this.settings, options )
}
this.$element = $(content)
.bind('modal:open', $.proxy(this.open, this))
.bind('modal:close', $.proxy(this.close, this))
.bind('modal:toggle', $.proxy(this.toggle, this))
.delegate('.close', 'click', $.proxy(this.close, this))
2011-08-27 06:57:35 +00:00
return this
}
Modal.prototype = {
toggle: function () {
return this[!this.isOpen ? 'open' : 'close']()
}
, open: function () {
var that = this
this.isOpen = true
_.escape.call(this)
_.backdrop.call(this)
2011-08-27 06:57:35 +00:00
2011-08-28 01:03:01 +00:00
this.$element
2011-08-27 06:57:35 +00:00
.appendTo(document.body)
2011-08-27 07:28:58 +00:00
.show()
2011-08-27 06:57:35 +00:00
setTimeout(function () {
2011-08-28 01:03:01 +00:00
that.$element.addClass('in')
that.$backdrop && that.$backdrop.addClass('in')
2011-08-27 06:57:35 +00:00
}, 1)
return this
}
, close: function (e) {
e && e.preventDefault()
2011-08-27 06:57:35 +00:00
var that = this
this.isOpen = false
_.escape.call(this)
_.backdrop.call(this)
2011-08-27 06:57:35 +00:00
2011-08-28 01:03:01 +00:00
this.$element.removeClass('in')
2011-08-27 06:57:35 +00:00
function removeElement () {
that.$element.unbind(transitionEnd)
that.$element.detach()
2011-08-27 06:57:35 +00:00
}
2011-08-28 01:03:01 +00:00
$.support.transition && this.$element.hasClass('fade') ?
2011-08-27 06:57:35 +00:00
this.$element.bind(transitionEnd, removeElement) :
removeElement()
return this
}
}
/* MODAL PRIVATE METHODS
* ===================== */
var _ = {
2011-08-27 06:57:35 +00:00
backdrop: function () {
var that = this
2011-08-28 01:03:01 +00:00
, animate = this.$element.hasClass('fade') ? 'fade' : ''
2011-08-27 07:19:05 +00:00
if ( this.isOpen && this.settings.backdrop ) {
2011-08-28 01:03:01 +00:00
this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
2011-08-29 00:40:25 +00:00
.click(function () { that.close() })
2011-08-27 06:57:35 +00:00
.appendTo(document.body)
2011-08-27 07:19:05 +00:00
} else if ( !this.isOpen && this.$backdrop ) {
2011-08-28 01:03:01 +00:00
this.$backdrop.removeClass('in')
2011-08-27 06:57:35 +00:00
function removeElement() {
that.$backdrop.remove()
that.$backdrop = null
}
2011-08-28 01:03:01 +00:00
$.support.transition && this.$element.hasClass('fade')?
2011-08-27 06:57:35 +00:00
this.$backdrop.bind(transitionEnd, removeElement) :
removeElement()
}
}
2011-08-27 07:42:20 +00:00
, escape: function () {
2011-08-27 06:57:35 +00:00
var that = this
2011-08-27 07:19:05 +00:00
if ( this.isOpen && this.settings.closeOnEscape ) {
2011-08-29 00:32:31 +00:00
$('body').bind('keyup.modal.escape', function ( e ) {
2011-08-27 06:57:35 +00:00
if ( e.which == 27 ) {
that.close()
}
})
2011-08-27 07:19:05 +00:00
} else if ( !this.isOpen ) {
2011-08-29 00:32:31 +00:00
$('body').unbind('keyup.modal.escape')
2011-08-27 06:57:35 +00:00
}
}
}
/* MODAL PLUGIN DEFINITION
* ======================= */
2011-08-27 07:19:05 +00:00
$.fn.modal = function ( options ) {
2011-08-27 06:57:35 +00:00
options = options || {}
return this.each(function () {
return new Modal(this, options)
})
2011-08-27 06:57:35 +00:00
}
$.fn.modal.Modal = Modal
$.fn.modal.defaults = {
backdrop: false
, closeOnEscape: false
}
2011-08-27 06:57:35 +00:00
})( jQuery || ender )