blob: ce4fa3e83e7b9c2a7fe8d89c557f599f75efb03b [file] [log] [blame]
package org.apache.karaf.webconsole.core.behavior;
import org.apache.wicket.behavior.AbstractHeaderContributor;
import org.apache.wicket.markup.html.IHeaderContributor;
import org.apache.wicket.markup.html.JavascriptPackageResource;
public class RaphaelBehavior extends AbstractHeaderContributor {
@Override
public IHeaderContributor[] getHeaderContributors() {
return new IHeaderContributor[] {
JavascriptPackageResource.getHeaderContribution(RaphaelBehavior.class, "raphael/raphael-1.3.1.min.js")
};
}
}