Description
Hi,
i tried render the javascript as:
public void renderHead(IHeaderResponse response) {
response.renderJavascriptReference(contextPath + "js/test.js");
}
The test.js is in webapp/js/test.js (out of classpath). All works greatly in Opera but in FF (gecko) is there a problem in wicket-ajax.js (the code is form trunk version):
836: if (Wicket.Browser.isGecko()) {
837: var href = document.location.href;
838: var lastIndexOf = href.lastIndexOf('/');
839: if (lastIndexOf > 0)
840:
843:}
Why is there this fix/workaround? This works only for relative path but for absolute is this code broken.