From d897357e7fbf421b88f6fa76d9d6e72eaa47750f Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 10 Jun 2010 07:18:39 +0000 Subject: [PATCH] upps, missed some comments --- phpgwapi/js/egw_json.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/phpgwapi/js/egw_json.js b/phpgwapi/js/egw_json.js index a46eba12c0..a61d9f8e39 100644 --- a/phpgwapi/js/egw_json.js +++ b/phpgwapi/js/egw_json.js @@ -228,14 +228,14 @@ egw_json_request.prototype.handleResponse = function(data, textStatus, XMLHttpRe */ _xajax_doXMLHTTP = function(_async, _menuaction, _arguments) { - /* Assemble the parameter array *//* + /* Assemble the parameter array */ var paramarray = new Array(); for (var i = 1; i < _arguments.length; i++) { paramarray[paramarray.length] = _arguments[i]; } - /* Create a new request, passing the menuaction and the parameter array *//* + /* Create a new request, passing the menuaction and the parameter array */ var request = new egw_json_request(_menuaction, paramarray); /* Send the request */ @@ -268,7 +268,7 @@ window.xajax = { } var serialized = $(_form).serializeArray(); - alert("\nSerialized:\n" + serialized); + //alert("\nSerialized:\n" + serialized); return serialized; } };