WICKET-5819 Fix Home.html to be valid XML. Fixes the build
Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/35f2b619 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/35f2b619 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/35f2b619 Branch: refs/heads/pr-86-media_tags Commit: 35f2b619f711b9b8f41e1c7cd1140b44f03db273 Parents: 5e5c6e0 Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Wed Feb 18 22:29:48 2015 +0200 Committer: Andrea Del Bene <[email protected]> Committed: Thu Mar 12 22:13:05 2015 +0100 ---------------------------------------------------------------------- .../java/org/apache/wicket/examples/media/Home.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/35f2b619/wicket-examples/src/main/java/org/apache/wicket/examples/media/Home.html ---------------------------------------------------------------------- diff --git a/wicket-examples/src/main/java/org/apache/wicket/examples/media/Home.html b/wicket-examples/src/main/java/org/apache/wicket/examples/media/Home.html index efceee8..8c77e49 100644 --- a/wicket-examples/src/main/java/org/apache/wicket/examples/media/Home.html +++ b/wicket-examples/src/main/java/org/apache/wicket/examples/media/Home.html @@ -4,12 +4,12 @@ <link rel="stylesheet" type="text/css" href="style.css"/> </head> <body> - <span wicket:id="mainNavigation"/> - <video wicket:id="video1" /> - <video wicket:id="video2" /> + <div wicket:id="mainNavigation"></div> + <video wicket:id="video1" ></video> + <video wicket:id="video2" ></video> <video wicket:id="video3"> - <source wicket:id="source3" /> - </video><br><br> - For more video examples see comments in the java sources<br><br>The second movie is not displayed because of CORS settings - please read <a href="http://en.wikipedia.org/wiki/Cross-origin_resource_sharing">Cross-origin_resource_sharing - Wikipedia</a> for more information. + <source wicket:id="source3"/> + </video><br/><br/> + For more video examples see comments in the java sources<br/><br/>The second movie is not displayed because of CORS settings - please read <a href="http://en.wikipedia.org/wiki/Cross-origin_resource_sharing">Cross-origin_resource_sharing - Wikipedia</a> for more information. </body> </html>
