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/05/30 10:31:14 UTC

[2/2] 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'


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

Branch: refs/heads/wicket-6.x
Commit: 35c80feb09986c36239257975ca9824f1041cb67
Parents: 943a874
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Fri May 30 10:30:29 2014 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Fri May 30 10:30:29 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/35c80feb/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 918edec..45dc345 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
@@ -887,7 +887,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