Revision: 178
http://svn.sourceforge.net/hw4mdl/?rev=178&view=rev
Author: tomroro
Date: 2007-01-10 13:13:21 -0800 (Wed, 10 Jan 2007)
Log Message:
-----------
I forget to update the javascript function which manage the display of the tab
->fixed bug#10706
Modified Paths:
--------------
trunk/moodle/mod/liveclassroom/js/manageXml.js
Modified: trunk/moodle/mod/liveclassroom/js/manageXml.js
===================================================================
--- trunk/moodle/mod/liveclassroom/js/manageXml.js 2007-01-10 17:01:35 UTC (rev 177)
+++ trunk/moodle/mod/liveclassroom/js/manageXml.js 2007-01-10 21:13:21 UTC (rev 178)
@@ -834,14 +834,15 @@
}
+
function DisplayTab(panelInformations){
var display="";
var context=new String(panelInformations[0].getElements("contextDisplay")[0].getText());
-
+
if(context.indexOf("all")!=-1 || context.indexOf(typeSelect)!=-1)
- display +="<td onclick='onTab("+panelInformations[0].getElements("position")[0].getText()+")' onmouseover='onOver("+panelInformations[0].getElements("position")[0].getText()+")' onmouseout='onOut("+panelInformations[0].getElements("position")[0].getText()+")'id='tab"+panelInformations[0].getElements("position")[0].getText()+"' class='"+panelInformations[0].getElements("styleEnabled")[0].getText()+"' ";
+ display +="<td onclick='onTab("+panelInformations[0].getElements("position")[0].getText()+")' id='tab"+panelInformations[0].getElements("position")[0].getText()+"' class='"+panelInformations[0].getElements("styleEnabled")[0].getText()+"' ";
else
display +="<td class='"+panelInformations[0].getElements("styleDisabled")[0].getText()+"' ";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|