From: <sk...@us...> - 2008-02-13 14:54:41
|
Revision: 569 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=569&view=rev Author: sknappe Date: 2008-02-13 06:54:37 -0800 (Wed, 13 Feb 2008) Log Message: ----------- little bugfix Modified Paths: -------------- trunk/src/dbpedia-navigator/ajaxfunctions.php Modified: trunk/src/dbpedia-navigator/ajaxfunctions.php =================================================================== --- trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-13 14:27:13 UTC (rev 568) +++ trunk/src/dbpedia-navigator/ajaxfunctions.php 2008-02-13 14:54:37 UTC (rev 569) @@ -342,7 +342,7 @@ foreach ($concepts as $con){ $concept.="<tr><td><a href=\"\" onclick=\"xajax_getSubjectsFromConcept('".$con."');return false;\" onMouseOver=\"showdiv('div".$i."');showdiv('ConceptBox');\" onMouseOut=\"hidediv('div".$i."');hidediv('ConceptBox');\" />".$con."</a></td></tr>"; //put information about concepts in divs - $conceptinformation.="<div id=\"div".$i."\">".$con."</div>"; + $conceptinformation.="<div id=\"div".$i."\" style=\"display:none\">".$con."</div>"; $i++; } $concept.="</table>"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |