Fixed list onClick handlers in test1 and test2 to work with the updated

e.target.  (e.target used to be the list, now it's the option)
This commit is contained in:
rginda%ndcico.com 1999-09-18 00:25:47 +00:00
Родитель f22d964d31
Коммит c53112db82
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -318,7 +318,7 @@ function onListChanUsers ()
function onListClick (e)
{
var name = e.target.options[e.target.selectedIndex].text;
var name = e.target.text;
var ary = name.match(/\[.*\] (.*)/);
var name = (ary) ? ary[1] : name;
var btn = document.getElementById ("btnCommand");

Просмотреть файл

@ -379,7 +379,7 @@ function onListChanUsers ()
function onListClick (e)
{
var name = e.target.options[e.target.selectedIndex].text;
var name = e.target.text;
var ary = name.match(/\[.*\] (.*)/);
var name = (ary) ? ary[1] : name;
@ -410,7 +410,7 @@ function onListClick (e)
function onActListClick (e)
{
var name = e.target.options[e.target.selectedIndex].text;
var name = e.target.text;
var ary = name.match(/\[.*\] (.*)/);
var name = (ary) ? ary[1] : name;