NIHVIVO-1389 NIHVIVO-1506 Added include for ${scripts} variable that had been mistakenly left out of basicPage.jsp. This was resulting in missing JavaScript and causing problems on individual control panel and visualizations for the individual page. Once the JS was returned, there was still another problem with jQuery's user of $() conflicting with DWR on the entity edits page. Resolved this using jQuery's built in noConflict() method.

This commit is contained in:
nac26 2010-12-15 13:46:09 +00:00
parent d2c83703cd
commit b27b3aa607
2 changed files with 22 additions and 15 deletions

View file

@ -59,7 +59,11 @@
<!DOCTYPE html>
<html lang="en">
${ftl_head}
<head>
${ftl_head}
<c:if test="${!empty scripts}"><jsp:include page="${scripts}"/></c:if>
</head>
<body ${requestScope.bodyAttr}>
${ftl_identity}