Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Fix NestedLinkPanel.html and NestedStaticTextPanel.html miss matched tags

...

Code Block
html
html
<html>
<body>
<wicket:panel>
<a href="#" wicket:id="myLink"><span wicket:id="label">bar</span></a>
<span wicket:id="foo">message goes here</a>span>
</wicket:panel>
</body>
</html>

...

Code Block
html
html
<html>
<body>
<wicket:panel>
<span wicket:id="label">bar</span>
<span wicket:id="foo">message goes here</a>span>
</wicket:panel>
</body>
</html>

...