twbs--bootstrap/examples/assets/js/bootstrap-modals.js

157 lines
3.6 KiB
JavaScript
Raw Normal View History

2011-08-27 06:57:35 +00:00
(function( $ ){
/* CSS TRANSITION SUPPORT (https://gist.github.com/373874)
* ======================================================= */
2011-08-27 07:19:05 +00:00
$.support.transition = (function () {
2011-08-27 06:57:35 +00:00
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
})()
2011-08-27 06:57:35 +00:00
/* SHARED VARS
* =========== */
var $window = $(window)
, transitionEnd
// set CSS transition event type
2011-08-27 07:19:05 +00:00
if ( $.support.transition ) {
2011-08-27 06:57:35 +00:00
transitionEnd = "TransitionEnd"
2011-08-27 07:19:05 +00:00
if ( $.browser.webkit ) {
2011-08-27 06:57:35 +00:00
transitionEnd = "webkitTransitionEnd"
2011-08-27 07:19:05 +00:00
} else if ( $.browser.mozilla ) {
2011-08-27 06:57:35 +00:00
transitionEnd = "transitionend"
2011-08-27 07:19:05 +00:00
} else if ( $.browser.opera ) {
2011-08-27 06:57:35 +00:00
transitionEnd = "oTransitionEnd"
}
}
/* MODAL PUBLIC CLASS DEFINITION
* ============================= */
2011-08-27 07:19:05 +00:00
var Modal = function ( options ) {
2011-08-27 06:57:35 +00:00
this.settings = {
backdrop: false
, closeOnEscape: false
, content: false
}
if ( typeof options == 'string' ) {
this.settings.content = options
} else if ( options ) {
$.extend( this.settings, options )
}
return this
}
Modal.prototype = {
toggle: function () {
return this[!this.isOpen ? 'open' : 'close']()
}
, open: function () {
var that = this
this.isOpen = true
_private.onEscape.call(this)
_private.backdrop.call(this)
this.$element = $(this.settings.content)
.delegate('.close', 'click', function (e) { e.preventDefault(); that.close() })
.appendTo(document.body)
2011-08-27 07:28:58 +00:00
.show()
2011-08-27 06:57:35 +00:00
setTimeout(function () {
that.$element.addClass('open')
that.$backdrop && that.$backdrop.addClass('open')
}, 1)
return this
}
, close: function () {
var that = this
this.isOpen = false
_private.onEscape.call(this)
_private.backdrop.call(this)
this.$element.removeClass('open')
function removeElement () {
that.$element.remove()
that.$element = null
}
$.support.transition ?
this.$element.bind(transitionEnd, removeElement) :
removeElement()
return this
}
}
/* MODAL PRIVATE METHODS
* ===================== */
var _private = {
backdrop: function () {
var that = this
2011-08-27 07:19:05 +00:00
if ( this.isOpen && this.settings.backdrop ) {
2011-08-27 06:57:35 +00:00
this.$backdrop = $('<div class="modal-backdrop" />')
.click(function () { that.close() })
.appendTo(document.body)
2011-08-27 07:19:05 +00:00
} else if ( !this.isOpen && this.$backdrop ) {
2011-08-27 06:57:35 +00:00
this.$backdrop.removeClass('open')
function removeElement() {
that.$backdrop.remove()
that.$backdrop = null
}
$.support.transition ?
this.$backdrop.bind(transitionEnd, removeElement) :
removeElement()
}
}
, onEscape: function () {
var that = this
2011-08-27 07:19:05 +00:00
if ( this.isOpen && this.settings.closeOnEscape ) {
$window.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-27 06:57:35 +00:00
$window.unbind('keyup.modal.escape')
}
}
}
/* MODAL PLUGIN DEFINITION
* ======================= */
2011-08-27 07:19:05 +00:00
$.modal = function ( options ) {
2011-08-27 06:57:35 +00:00
return new Modal(options)
}
2011-08-27 07:19:05 +00:00
$.fn.modal = function ( options ) {
2011-08-27 06:57:35 +00:00
options = options || {}
options.content = this
return new Modal(options)
}
})( jQuery || ender )