Przeglądaj źródła

Bug fix : missing semicolons were causing an error with IE9.

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@3107 a333f486-631f-4898-b8df-5754b55c2be0
dflaven 11 lat temu
rodzic
commit
b8a66dc5fe
1 zmienionych plików z 6 dodań i 4 usunięć
  1. 6 4
      js/ajaxfileupload.js

+ 6 - 4
js/ajaxfileupload.js

@@ -131,12 +131,12 @@ jQuery.extend(
 											jQuery.handleError(s, xml, null, e);
 										}									
 
-									}, 100)
+									}, 100);
 
-                xml = null
+                xml = null;
 
             }
-        }
+        };
         // Timeout checker
         if ( s.timeout > 0 ) 
 		{
@@ -197,7 +197,9 @@ jQuery.extend({
             s.error( xhr, status, e );
         // If we have some XML response text (e.g. from an AJAX call) then log it in the console
         else if(xhr.responseText)
-            console.log(xhr.responseText);
+	{
+            //console.log(xhr.responseText);
+	}
     }
 });