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;
}
ASSERT (console.currentFrameIndex < console.frames.length,
"console.currentFrameIndex out of range");
try
{
return console.frames[console.currentFrameIndex].eval (script,
MSG_VAL_CONSOLE,
1);
return getCurrentFrame().eval (script, MSG_VAL_CONSOLE, 1);
}
catch (ex)
{