bkruse: trunk r1124 - /trunk/config/scripts/astman.js
SVN commits to the Asterisk-GUI project
asterisk-gui-commits at lists.digium.com
Tue Jun 19 17:59:25 CDT 2007
Author: bkruse
Date: Tue Jun 19 17:59:24 2007
New Revision: 1124
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=1124
Log:
Fixed the Active Channels Page. Problems: [1] We were calling astmanEngine instead of parent.astmanEngine. [2] We were calling an invalid callback. [3] We were trying to reference channelsCallback in the if statement, which does not exist. Its all fixed now :]
Modified:
trunk/config/scripts/astman.js
Modified: trunk/config/scripts/astman.js
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/scripts/astman.js?view=diff&rev=1124&r1=1123&r2=1124
==============================================================================
--- trunk/config/scripts/astman.js (original)
+++ trunk/config/scripts/astman.js Tue Jun 19 17:59:24 2007
@@ -1122,11 +1122,7 @@
target=target.parentNode;
me.selecttarget = target.id;
target.className = "chanlistselected";
-
- if(channelsCallback ){
- channelsCallback (target.id);
- }
- //me.chancallback(target.id);
+ me.chancallback(target.id);
};
this.restoreTarget = function(targetname) {
@@ -1223,7 +1219,7 @@
foundactive = 1;
}
count++;
- s = s + "\t<tr class='" + cclass + "' id='" + channels[x].channel + "' onClick='astmanEngine.clickChannel(event)'>";
+ s = s + "\t<tr class='" + cclass + "' id='" + channels[x].channel + "' onClick='parent.astmanEngine.clickChannel(event)'>";
s = s + "<td class='field_text'>" + channels[x].channel + "</td>";
if (channels[x].state)
s = s + "<td class='field_text'>" + channels[x].state + "</td>";
More information about the asterisk-gui-commits
mailing list