fixed props and scope commands to used getCurrentFrame, instead of console.currentFrameIndex
This commit is contained in:
rginda%netscape.com 2001-06-12 23:43:46 +00:00
Родитель b5742ceaa1
Коммит 630b9df3ff
1 изменённых файлов: 1 добавлений и 6 удалений

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

@ -166,14 +166,9 @@ function evalInTargetScope (script)
return false; return false;
} }
ASSERT (console.currentFrameIndex < console.frames.length,
"console.currentFrameIndex out of range");
try try
{ {
return console.frames[console.currentFrameIndex].eval (script, return getCurrentFrame().eval (script, MSG_VAL_CONSOLE, 1);
MSG_VAL_CONSOLE,
1);
} }
catch (ex) catch (ex)
{ {