JS strict warnings in wizardHandlerSet.js (65937). r=blake a=ben

This commit is contained in:
blakeross%telocity.com 2001-02-07 02:53:49 +00:00
Родитель e177704f0e
Коммит 14f1502c42
1 изменённых файлов: 7 добавлений и 5 удалений

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

@ -153,11 +153,13 @@ function DEF_onPageLoad( tag )
// set the focus to the first focusable element
var doc = window.frames[0].document;
var controls = doc.controls;
for (var i=0; i< controls.length; i++) {
if (controls[i].focus) {
controls[i].focus();
break; // stop when focus has been set
if ("controls" in doc && doc.controls.length > 0) {
var controls = doc.controls;
for (var i=0; i< controls.length; i++) {
if (controls[i].focus) {
controls[i].focus();
break; // stop when focus has been set
}
}
}
}