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 2014/06/04 21:28:37 UTC

[3/4] git commit: Fix javadoc - the name of the JavaScript function to submit a form is just 'submit'

Fix javadoc - the name of the JavaScript function to submit a form is just 'submit'

(cherry picked from commit 35c80feb09986c36239257975ca9824f1041cb67)


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

Branch: refs/heads/master
Commit: 84e437ef64f38a56998d7ff2dd9c4149d23c2d1d
Parents: 95c1104
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Fri May 30 10:30:29 2014 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Wed Jun 4 20:04:05 2014 +0200

----------------------------------------------------------------------
 .../src/main/java/org/apache/wicket/markup/html/form/Form.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/84e437ef/wicket-core/src/main/java/org/apache/wicket/markup/html/form/Form.java
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/markup/html/form/Form.java b/wicket-core/src/main/java/org/apache/wicket/markup/html/form/Form.java
index b54d995..06ff0da 100644
--- a/wicket-core/src/main/java/org/apache/wicket/markup/html/form/Form.java
+++ b/wicket-core/src/main/java/org/apache/wicket/markup/html/form/Form.java
@@ -883,7 +883,7 @@ public class Form<T> extends WebMarkupContainer implements IFormSubmitListener,
 	 * @param submittingComponent
 	 *            component responsible for submitting the form, or <code>null</code> if none (eg
 	 *            the form has been submitted via the enter key or javascript calling
-	 *            form.onsubmit())
+	 *            form.submit())
 	 * 
 	 * @see #delegateSubmit(IFormSubmitter) for an easy way to process submitting component in the
 	 *      default manner