Open GoogleCodeExporter opened 8 years ago
I found the error. OWLDoc is producing the following code:
<span id=''Teddy Entity'' style='display: none;'>
<li class='expandable'> +
<a href="TEDDY_0000083___-1572585971.html"
title="http://www.ebi.ac.uk/compneur-srv/
teddy.owl#TEDDY_0000083">'Temporal Behaviour'</a></li><li class='expandable'> +
<a href="TEDDY_obsolete___1509148937.html"
title="http://www.ebi.ac.uk/compneur-srv/
teddy.owl#TEDDY_obsolete">_obsolete</a></li></span><!-- subs -->
<span id=''Teddy Entity'-expand'><a class='subsexpand' id='showSubs' href='#'
onClick="showSubs(''Teddy Entity'');">2 more...</a></span>
The double apostrophe ('') for the id of the span block is wrong. It produces
the
error when showSubs() is called... It has to be single apostrophs:
<span id='Teddy Entity' style='display: none;'>
...
<span id=''Teddy Entity'-expand'><a class='subsexpand' id='showSubs' href='#'
onClick="showSubs('Teddy Entity');">2 more...</a></span>
Christian.
Original comment by christia...@gmail.com
on 13 Oct 2009 at 9:14
Original issue reported on code.google.com by
christia...@gmail.com
on 13 Oct 2009 at 8:58