]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
white space junk
authorJacob Thornton <jacobthornton@gmail.com>
Sat, 27 Aug 2011 07:19:05 +0000 (00:19 -0700)
committerJacob Thornton <jacobthornton@gmail.com>
Sat, 27 Aug 2011 07:19:05 +0000 (00:19 -0700)
examples/assets/js/bootstrap-modals.js

index 57e0535018f2964ef11907d2b2f943b49d74fd6b..f684be25a47bab0adb9329fa1bc386455b13ed7a 100644 (file)
@@ -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
     , 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
 
     backdrop: function () {
       var that = this
-      if (this.isOpen && this.settings.backdrop) {
+      if ( this.isOpen && this.settings.backdrop ) {
         this.$backdrop = $('<div class="modal-backdrop" />')
           .click(function () { that.close() })
           .appendTo(document.body)
-      } else if (!this.isOpen && this.$backdrop){
+      } else if ( !this.isOpen && this.$backdrop ) {
         this.$backdrop.removeClass('open')
 
         function removeElement() {
 
   , onEscape: function () {
       var that = this
-      if (this.isOpen && this.settings.closeOnEscape) {
-        $window.bind('keyup.modal.escape', function (e) {
+      if ( this.isOpen && this.settings.closeOnEscape ) {
+        $window.bind('keyup.modal.escape', function ( e ) {
           if ( e.which == 27 ) {
             that.close()
           }
         })
-      } else if (!this.isOpen) {
+      } else if ( !this.isOpen ) {
         $window.unbind('keyup.modal.escape')
       }
     }
  /* MODAL PLUGIN DEFINITION
   * ======================= */
 
-  $.modal = function (options) {
+  $.modal = function ( options ) {
     return new Modal(options)
   }
 
-  $.fn.modal = function (options) {
+  $.fn.modal = function ( options ) {
     options = options || {}
     options.content = this
     return new Modal(options)