mirror of
https://github.com/twbs/bootstrap.git
synced 2025-02-06 04:08:22 +01:00
white space junk
This commit is contained in:
parent
52c624079e
commit
db706a2596
26
examples/assets/js/bootstrap-modals.js
vendored
26
examples/assets/js/bootstrap-modals.js
vendored
@ -3,7 +3,7 @@
|
|||||||
/* CSS TRANSITION SUPPORT (https://gist.github.com/373874)
|
/* CSS TRANSITION SUPPORT (https://gist.github.com/373874)
|
||||||
* ======================================================= */
|
* ======================================================= */
|
||||||
|
|
||||||
$.support.transition = (function(){
|
$.support.transition = (function () {
|
||||||
var thisBody = document.body || document.documentElement
|
var thisBody = document.body || document.documentElement
|
||||||
, thisStyle = thisBody.style
|
, thisStyle = thisBody.style
|
||||||
, support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined
|
, support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined
|
||||||
@ -18,13 +18,13 @@
|
|||||||
, transitionEnd
|
, transitionEnd
|
||||||
|
|
||||||
// set CSS transition event type
|
// set CSS transition event type
|
||||||
if ($.support.transition) {
|
if ( $.support.transition ) {
|
||||||
transitionEnd = "TransitionEnd"
|
transitionEnd = "TransitionEnd"
|
||||||
if ($.browser.webkit) {
|
if ( $.browser.webkit ) {
|
||||||
transitionEnd = "webkitTransitionEnd"
|
transitionEnd = "webkitTransitionEnd"
|
||||||
} else if ($.browser.mozilla) {
|
} else if ( $.browser.mozilla ) {
|
||||||
transitionEnd = "transitionend"
|
transitionEnd = "transitionend"
|
||||||
} else if ($.browser.opera) {
|
} else if ( $.browser.opera ) {
|
||||||
transitionEnd = "oTransitionEnd"
|
transitionEnd = "oTransitionEnd"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -33,7 +33,7 @@
|
|||||||
/* MODAL PUBLIC CLASS DEFINITION
|
/* MODAL PUBLIC CLASS DEFINITION
|
||||||
* ============================= */
|
* ============================= */
|
||||||
|
|
||||||
var Modal = function (options) {
|
var Modal = function ( options ) {
|
||||||
this.settings = {
|
this.settings = {
|
||||||
backdrop: false
|
backdrop: false
|
||||||
, closeOnEscape: false
|
, closeOnEscape: false
|
||||||
@ -106,11 +106,11 @@
|
|||||||
|
|
||||||
backdrop: function () {
|
backdrop: function () {
|
||||||
var that = this
|
var that = this
|
||||||
if (this.isOpen && this.settings.backdrop) {
|
if ( this.isOpen && this.settings.backdrop ) {
|
||||||
this.$backdrop = $('<div class="modal-backdrop" />')
|
this.$backdrop = $('<div class="modal-backdrop" />')
|
||||||
.click(function () { that.close() })
|
.click(function () { that.close() })
|
||||||
.appendTo(document.body)
|
.appendTo(document.body)
|
||||||
} else if (!this.isOpen && this.$backdrop){
|
} else if ( !this.isOpen && this.$backdrop ) {
|
||||||
this.$backdrop.removeClass('open')
|
this.$backdrop.removeClass('open')
|
||||||
|
|
||||||
function removeElement() {
|
function removeElement() {
|
||||||
@ -126,13 +126,13 @@
|
|||||||
|
|
||||||
, onEscape: function () {
|
, onEscape: function () {
|
||||||
var that = this
|
var that = this
|
||||||
if (this.isOpen && this.settings.closeOnEscape) {
|
if ( this.isOpen && this.settings.closeOnEscape ) {
|
||||||
$window.bind('keyup.modal.escape', function (e) {
|
$window.bind('keyup.modal.escape', function ( e ) {
|
||||||
if ( e.which == 27 ) {
|
if ( e.which == 27 ) {
|
||||||
that.close()
|
that.close()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
} else if (!this.isOpen) {
|
} else if ( !this.isOpen ) {
|
||||||
$window.unbind('keyup.modal.escape')
|
$window.unbind('keyup.modal.escape')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -143,11 +143,11 @@
|
|||||||
/* MODAL PLUGIN DEFINITION
|
/* MODAL PLUGIN DEFINITION
|
||||||
* ======================= */
|
* ======================= */
|
||||||
|
|
||||||
$.modal = function (options) {
|
$.modal = function ( options ) {
|
||||||
return new Modal(options)
|
return new Modal(options)
|
||||||
}
|
}
|
||||||
|
|
||||||
$.fn.modal = function (options) {
|
$.fn.modal = function ( options ) {
|
||||||
options = options || {}
|
options = options || {}
|
||||||
options.content = this
|
options.content = this
|
||||||
return new Modal(options)
|
return new Modal(options)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user