James Moger
2015-11-19 e41e8f8c3bc9f5edab1d271464364f95620ece8c
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));
   }
}