From dcb48d0f35455ac53a744d5d7c336d31e438d683 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Wed, 26 Mar 2014 14:58:32 +0000 Subject: [PATCH] Bug fix : missing semicolons were causing an error with IE9. SVN:trunk[3107] --- js/ajaxfileupload.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/js/ajaxfileupload.js b/js/ajaxfileupload.js index a64e09be5..74990ea75 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); + } } });