Commit ff2d8026a1be011a7817657ae9c3ebe3490cb14b

Authored by Michael Joseph
1 parent 8cc590ab

fixed ie js bug: s/javascript:void();/#/g


git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@2237 c91229c3-7414-0410-bfa2-8a42b809f60b
presentation/lookAndFeel/knowledgeTree/documentmanagement/viewUI.inc
... ... @@ -387,7 +387,7 @@ function renderDocumentSection($sSectionName, $sHeadingText, $bDisplayLink, $iDo
387 387 if ($bDisplayLink) {
388 388 $sLink = generateControllerLink("viewDocument", "fDocumentID=$iDocumentID&fShowSection=$sSectionName", $sHeadingText);
389 389 } else {
390   - $sLink = "<a href=\"javascript:void();\" onClick=\"switchDiv('$sSectionName', 'document');\">$sHeadingText</a>";
  390 + $sLink = "<a href=\"#\" onClick=\"switchDiv('$sSectionName', 'document');\">$sHeadingText</a>";
391 391 }
392 392 return "<tr bgcolor=\"" . getColour($iColour) . "\"><td width=\"100%\">$sLink</td></tr>\n";
393 393 }
... ...