From f88703c39f42f84af30f54048fe23945fb432db3 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Mon, 6 Dec 2010 12:18:01 +0000 Subject: [PATCH] bug 26265, a few explicit ; at end of blocks --- skins/common/ajax.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/skins/common/ajax.js b/skins/common/ajax.js index d43f135b2b..06d4f4e020 100644 --- a/skins/common/ajax.js +++ b/skins/common/ajax.js @@ -33,7 +33,7 @@ window.sajax_debug = function(text) { e.appendChild( m ); return true; -} +}; /** * Compatibility wrapper for creating a new XMLHttpRequest object. @@ -62,7 +62,7 @@ window.sajax_init_object = function() { } return A; -} +}; /** * Perform an AJAX call to MediaWiki. Calls are handled by AjaxDispatcher.php @@ -164,7 +164,7 @@ window.sajax_do_call = function(func_name, args, target) { delete x; return true; -} +}; /** * @return boolean whether the browser supports XMLHttpRequest @@ -174,4 +174,4 @@ window.wfSupportsAjax = function() { var supportsAjax = request ? true : false; delete request; return supportsAjax; -} +}; -- 2.20.1