From 5b12bd4c07fcb8776d7132317f7d9149ac5f1476 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Wed, 26 Mar 2014 15:00:25 +0000 Subject: [PATCH] Bug fix : missing semicolons were causing an error with IE9. SVN:2.0.2[3108] --- js/ajaxfileupload.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/js/ajaxfileupload.js b/js/ajaxfileupload.js index a64e09be5f..74990ea756 100644 --- a/js/ajaxfileupload.js +++ b/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); + } } });