From: <ru...@us...> - 2009-09-17 10:50:35
|
Revision: 7142 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7142&view=rev Author: rurban Date: 2009-09-17 10:50:20 +0000 (Thu, 17 Sep 2009) Log Message: ----------- fix last folderArrowPath change: missing / Modified Paths: -------------- trunk/themes/default/ajax.js Modified: trunk/themes/default/ajax.js =================================================================== --- trunk/themes/default/ajax.js 2009-09-17 10:26:37 UTC (rev 7141) +++ trunk/themes/default/ajax.js 2009-09-17 10:50:20 UTC (rev 7142) @@ -43,7 +43,7 @@ } if (img) { if (!folderArrowPath) folderArrowPath = stylepath + 'images/'; - img.src = folderArrowPath + 'folderArrowOpen.png'; + img.src = folderArrowPath + '/folderArrowOpen.png'; } } } @@ -105,7 +105,7 @@ //alert("showHideAsync "+uri+" "+id+"\nloading..."); var img = document.getElementById(id+'-img'); if (img) - img.src = folderArrowPath + 'folderArrowLoading.gif'; + img.src = folderArrowPath + '/folderArrowLoading.gif'; cShowHide = new showHide(id) cShowHide.hXMLHttp.open( 'GET', uri, true ) cShowHide.hXMLHttp.send( null ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |