Bug 619026 - Scope timer variable so it is not at risk of being garbage collected. r=hsivonen

This commit is contained in:
Josh Matthews 2010-12-14 13:24:49 -08:00
Родитель fda3835560
Коммит 7b809e5997
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -1,5 +1,7 @@
var timer;
function armTimer(response) {
var timer = Components.classes["@mozilla.org/timer;1"]
timer = Components.classes["@mozilla.org/timer;1"]
.createInstance(Components.interfaces.nsITimer);
timer.initWithCallback(function() {
if (getState("docwritepreloadssecond") == "second" && getState("docwritepreloadsthird") == "third") {