Dictionary/webroot/jsp/footer.jsf

29 lines
727 B
Text
Raw Normal View History

<%@ page import="org.thdl.lex.LexLogger" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%-- <c:if test="${ ! empty sessionScope.visit.user }">
<c:if test="${ sessionScope.visit.user.developer }">
<jsp:include page="debug.jsf" flush="false" />
</c:if>
</c:if>
<c:if test="${ ! empty jumpToLocation }">
<script type="text/javascript">
function scrollIt(anchorname) {
if (document.all)
document.all(anchorname).scrollIntoView()
else if (document.anchors)
window.scrollTo(0,document.anchors[anchorname].y);
}
scrollIt('<c:out value="${ jumpToLocation }"/>');
</script>
</c:if> --%>
</div><!--END Main-->
</body>
</html>
<% LexLogger.debug( "Footer.jsf has finished rendering." ); %>