Bug 9420 [Revised] Work on Bootstrap for Koha
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / js / ajax.js
index dfc0444..968334b 100644 (file)
@@ -7,7 +7,7 @@ KOHA.AJAX = {
             cache: false,
             dataType: 'json',
             type: 'POST',
-            error: function ( xhr, stat, error ) { KOHA.AJAX.BaseError( error_callback, xhr, stat, error ) }
+            error: function ( xhr, stat, error ) { KOHA.AJAX.BaseError( error_callback, xhr, stat, error ); }
         } );
         $.ajax( options );
     },
@@ -15,30 +15,30 @@ KOHA.AJAX = {
         KOHA.xhr = xhr;
         if ( !xhr.getResponseHeader( 'content-type' ).match( 'application/json' ) ) {
             // Something really failed
-            humanMsg.displayAlert( _( 'Internal Server Error, please reload the page' ) );
+            humanMsg.displayAlert( _("Internal Server Error, please reload the page") );
             return;
         }
 
         var error = eval( '(' + xhr.responseText + ')' );
 
         if ( error.type == 'auth' ) {
-            humanMsg.displayMsg( _( 'You need to log in again, your session has timed out' ) );
+            humanMsg.displayMsg( _("You need to log in again, your session has timed out") );
         }
 
         if ( callback ) {
             callback( error );
         } else {
-            humanMsg.displayAlert( _( 'Error; your data might not have been saved' ) );
+            humanMsg.displayAlert( _("Error; your data might not have been saved") );
         }
     },
     MarkRunning: function ( selector, text ) {
-        text = text || _( 'Loading...' );
+        text = text || _("Loading...");
         $( selector )
             .attr( 'disabled', 'disabled' )
             .each( function () {
                 var $image = $( '<img src="/intranet-tmpl/prog/img/spinner-small.gif" alt="" class="spinner" />' );
                 var selector_type = this.localName;
-                if (selector_type == undefined) selector_type = this.nodeName; // IE only
+                if (selector_type === undefined) selector_type = this.nodeName; // IE only
                 switch ( selector_type.toLowerCase() ) {
                     case 'input':
                         $( this ).data( 'original-text', this.value );
@@ -65,7 +65,7 @@ KOHA.AJAX = {
             .removeAttr( 'disabled' )
             .each( function () {
                 var selector_type = this.localName;
-                if (selector_type == undefined) selector_type = this.nodeName; // IE only
+                if (selector_type === undefined) selector_type = this.nodeName; // IE only
                 switch ( selector_type.toLowerCase() ) {
                     case 'input':
                         this.value = $( this ).data( 'original-text' );
@@ -85,4 +85,4 @@ KOHA.AJAX = {
             } )
             .removeData( 'original-text' );
     }
-}
+};