Fix a JS strict warning; no bug.

This commit is contained in:
dmose%mozilla.org 2005-08-25 00:33:50 +00:00
parent 329c6cc865
commit 7ecccad15e

View File

@ -63,8 +63,10 @@ var gLightningPane = {
}
return undefined;
},
setTimezone: function() {
prefValue = document.getElementById("calendar.timezone.local").value;
var prefValue = document.getElementById("calendar.timezone.local")
.value;
var tzListBox = document.getElementById("timezone-listbox");
var children = tzListBox.childNodes;
@ -76,5 +78,5 @@ var gLightningPane = {
return;
}
}
},
}
}