You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2012/02/03 08:47:33 UTC

[6/6] git commit: JSDoc improvements

JSDoc improvements


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/112ae702
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/112ae702
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/112ae702

Branch: refs/heads/master
Commit: 112ae70203f8cce7fc22c7ec18e585d7d64530b4
Parents: 76e1663
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Thu Feb 2 16:40:36 2012 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Fri Feb 3 09:30:48 2012 +0200

----------------------------------------------------------------------
 .../wicket/ajax/res/js/wicket-ajax-jquery.js       |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/112ae702/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-ajax-jquery.js
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-ajax-jquery.js b/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-ajax-jquery.js
index 85bfc46..334d6ff 100644
--- a/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-ajax-jquery.js
+++ b/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-ajax-jquery.js
@@ -65,7 +65,7 @@
 
 	/**
 	 * Creates an iframe that can be used to load data asynchronously or as a
-	 * target for form submit.
+	 * target for Ajax form submit.
 	 *
 	 * @param {String} the value of the iframe's name attribute
 	 */
@@ -362,7 +362,9 @@
 
 		/**
 		 * A helper function that executes an array of handlers (before, success, failure)
-		 * @param {Array} handlers - the handlers to execute
+		 *
+		 * @param {Array[FunctionBody]} handlers - the handlers to execute
+		 * @param {Array[String]} argumentNames - the names of the arguments which are passes to the handles
 		 */
 		_executeHandlers: function (handlers, argumentNames) {
 			if (jQuery.isArray(handlers)) {