Updated Branches: refs/heads/master 5cb09312c -> d56125aad
WICKET-4641 AjaxFallbackLink and log a warning when there are several ajax event behaviors on the same event Fix a test Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/d56125aa Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/d56125aa Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/d56125aa Branch: refs/heads/master Commit: d56125aada34e8e8be62dde09f8f8da99c9a3e3b Parents: 5cb0931 Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Fri Jul 27 18:31:29 2012 +0300 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Fri Jul 27 18:31:29 2012 +0300 ---------------------------------------------------------------------- .../test/java/org/apache/wicket/ajax/HomePage.html | 22 +++++++------- 1 files changed, 11 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/d56125aa/wicket-core/src/test/java/org/apache/wicket/ajax/HomePage.html ---------------------------------------------------------------------- diff --git a/wicket-core/src/test/java/org/apache/wicket/ajax/HomePage.html b/wicket-core/src/test/java/org/apache/wicket/ajax/HomePage.html index c59651e..86c8915 100644 --- a/wicket-core/src/test/java/org/apache/wicket/ajax/HomePage.html +++ b/wicket-core/src/test/java/org/apache/wicket/ajax/HomePage.html @@ -1,10 +1,10 @@ -<html> - <head> - <title>Wicket Quickstart Archetype Homepage</title> - </head> - <body> - <strong>Wicket Quickstart Archetype Homepage</strong> - <br/><br/> +<html> + <head> + <title>Wicket Quickstart Archetype Homepage</title> + </head> + <body> + <strong>Wicket Quickstart Archetype Homepage</strong> + <br/><br/> <span wicket:id="message">message will be here</span> <form wicket:id="form"> @@ -17,10 +17,10 @@ </wicket:container> </div> - <a href="#" wicket:id="addButton">Click me to add a row</a> + <input type="submit" href="#" wicket:id="addButton" value="Click me to add a row"/> </form> - </body> -</html> - + </body> +</html> +
