From 2ccb455a5459618f4711f57fb939b9fb3c0587cd Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Wed, 26 Mar 2014 15:04:27 +0000 Subject: [PATCH] Bug fix : missing semicolons were causing an error with IE9. SVN:2.0[3110] --- js/ajaxfileupload.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/ajaxfileupload.js b/js/ajaxfileupload.js index 0be06a67e..52f2f6b60 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 ) {