James Moger
2015-09-30 7be48d8d14c74dfb10ba3d71f12a78505daf29a6
src/main/java/com/gitblit/wicket/panels/LinkPanel.java
@@ -107,10 +107,15 @@
      link.add(new Label("label", labelModel));
      add(link);
   }
   public void setNoFollow() {
      Component c = get("link");
      c.add(new SimpleAttributeModifier("rel", "nofollow"));
   }
   public void setTooltip(String tooltip) {
      Component c = get("link");
      c.add(new SimpleAttributeModifier("title", tooltip));
   }
}