зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1145394 - Fix unparseable JS code (r=gavin)
This commit is contained in:
Родитель
7bfc10aca5
Коммит
2cafd808a5
|
@ -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,
|
||||
|
|
Загрузка…
Ссылка в новой задаче