From: Jacob Thornton Date: Sat, 27 Aug 2011 07:19:05 +0000 (-0700) Subject: white space junk X-Git-Tag: v1.3.0~86^2^2~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db706a2596bf18b60246fcf962134df8203b5cc9;p=thirdparty%2Fbootstrap.git white space junk --- diff --git a/examples/assets/js/bootstrap-modals.js b/examples/assets/js/bootstrap-modals.js index 57e0535018..f684be25a4 100644 --- a/examples/assets/js/bootstrap-modals.js +++ b/examples/assets/js/bootstrap-modals.js @@ -3,7 +3,7 @@ /* CSS TRANSITION SUPPORT (https://gist.github.com/373874) * ======================================================= */ - $.support.transition = (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 @@ -18,13 +18,13 @@ , transitionEnd // set CSS transition event type - if ($.support.transition) { + if ( $.support.transition ) { transitionEnd = "TransitionEnd" - if ($.browser.webkit) { + if ( $.browser.webkit ) { transitionEnd = "webkitTransitionEnd" - } else if ($.browser.mozilla) { + } else if ( $.browser.mozilla ) { transitionEnd = "transitionend" - } else if ($.browser.opera) { + } else if ( $.browser.opera ) { transitionEnd = "oTransitionEnd" } } @@ -33,7 +33,7 @@ /* MODAL PUBLIC CLASS DEFINITION * ============================= */ - var Modal = function (options) { + var Modal = function ( options ) { this.settings = { backdrop: false , closeOnEscape: false @@ -106,11 +106,11 @@ backdrop: function () { var that = this - if (this.isOpen && this.settings.backdrop) { + if ( this.isOpen && this.settings.backdrop ) { this.$backdrop = $('