mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
Fix a JS strict warning; no bug.
This commit is contained in:
parent
329c6cc865
commit
7ecccad15e
@ -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;
|
||||
}
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user