Fixed ALF-10157: Web Form Details page for the "Selected Web Content Forms": script error appears on help button click: container.jsp (line 382)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@31743 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2011-11-04 15:30:59 +00:00
parent 40ecbd2c21
commit 01c7cfe6a3

View File

@@ -9,6 +9,10 @@ xmlns:f="http://java.sun.com/jsf/core">
function toggleOutputPathPatternHelp()
{
var d = document.getElementById('wizard:wizard-body:mainPanel');
if (d == null)
{
d = document.getElementById('dialog:dialog-body:mainPanel');
}
d.style.display = d.style.display == 'block' ? 'none' : 'block';
}
</script>