Fixed a couple of syntax errors that were preventing weave from starting

This commit is contained in:
jono@jono-gibbon-laptop 2008-04-01 16:36:08 -07:00
Родитель b70fbb03c2
Коммит 5d62b467ca
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -75,7 +75,8 @@ Store.prototype = {
},
applyCommands: function Store_applyCommands(commandList) {
let self = yield, timer, listener;
let self = yield;
let timer, listener;
if (this._yieldDuringApply) {
listener = new Utils.EventListener(self.cb);
@ -849,6 +850,7 @@ CookieStore.prototype = {
// since they're deprecated.
}
}
return items;
},