Bug 1145394 - Fix unparseable JS code (r=gavin)

This commit is contained in:
Bill McCloskey 2015-03-19 15:29:09 -07:00
Родитель 7bfc10aca5
Коммит 2cafd808a5
2 изменённых файлов: 3 добавлений и 3 удалений

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

@ -202,7 +202,7 @@ var Connection = Class({
},
poolFor: function(id) {
for (let pool of this.pools.values()) {
if pool.has(id)
if (pool.has(id))
return pool;
}
},
@ -797,7 +797,7 @@ var Tab = Client.from({
"storageActor": "storage",
"gcliActor": "gcli",
"memoryActor": "memory",
"eventLoopLag": "eventLoopLag"
"eventLoopLag": "eventLoopLag",
"trace": "trace", // missing
}

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

@ -266,7 +266,7 @@ var gSanitizePromptDialog = {
this.showItemList();
else
this.hideItemList();
}
},
#ifdef CRH_DIALOG_TREE_VIEW
// A duration value; used in the same context as Sanitizer.TIMESPAN_HOUR,