diff --git a/static-http/ajamdemo.html b/static-http/ajamdemo.html index 687b590442..f6b690e863 100644 --- a/static-http/ajamdemo.html +++ b/static-http/ajamdemo.html @@ -49,10 +49,14 @@ selectedchan = null; } if (loggedon) { + $('username').disabled = 1; + $('secret').disabled = 1; $('logoff').disabled = 0; $('login').disabled = 1; $('refresh').disabled = 0; } else { + $('username').disabled = 0; + $('secret').disabled = 0; $('logoff').disabled = 1; $('login').disabled = 0; $('refresh').disabled = 1; diff --git a/static-http/astman.js b/static-http/astman.js index 1a6927263c..81f896c1c7 100644 --- a/static-http/astman.js +++ b/static-http/astman.js @@ -121,6 +121,7 @@ function Astman() { var s, x; var cclass, count=0; var found = 0; + var foundactive = 0; var fieldlist = new Array("channel", "callerid", "calleridname", "context", "extension", "priority"); me.chancallback = callback; @@ -133,8 +134,10 @@ function Astman() { cclass = "chanlistodd"; else cclass = "chanlisteven"; - if (me.selecttarget && (me.selecttarget == x)) + if (me.selecttarget && (me.selecttarget == x)) { cclass = "chanlistselected"; + foundactive = 1; + } count++; s = s + "\t"; s = s + "" + channels[x].channel + ""; @@ -169,6 +172,9 @@ function Astman() { if (!found) s += "No active channels\n"; s += "\n"; + if (!foundactive) { + me.selecttarget = null; + } return s; }; this.parseResponse = function(t, callback) {