This commit is contained in:
loadrunner%betak.net 2001-05-01 23:12:31 +00:00
Родитель 6a44ba717c
Коммит c6ee9c8192
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -121,11 +121,9 @@ function SetForcedCharset(charset)
function UpdateCurrentCharset() function UpdateCurrentCharset()
{ {
var wnd = document.commandDispatcher.focusedWindow; var wnd = document.commandDispatcher.focusedWindow;
if (window == wnd) wnd = window._content; if ((window == wnd) || (wnd == null)) wnd = window._content;
var charset = wnd.document.characterSet; var charset = wnd.document.characterSet;
dump("Update current charset: " + charset + "\n");
var menuitem = document.getElementById('charset.' + charset); var menuitem = document.getElementById('charset.' + charset);
if (menuitem) { if (menuitem) {