1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 11:57:59 +01:00

Whitespace fixes.

--HG--
extra : rebase_source : 7bc98c4cf1a8ca89cfbfb1f96ffe9fa72565c663
This commit is contained in:
Doug Kearns
2010-11-05 00:52:40 +11:00
parent 4f5fd70ab2
commit 26e130bd0b
10 changed files with 18 additions and 19 deletions

View File

@@ -527,7 +527,7 @@ const Dactyl = Module("dactyl", {
let chrome = {};
let styles = {};
for (let [file,] in Iterator(services.get("dactyl:").FILE_MAP)) {
for (let [file, ] in Iterator(services.get("dactyl:").FILE_MAP)) {
dactyl.open("dactyl://help/" + file);
dactyl.modules.events.waitForPageLoad();
let data = [
@@ -1420,8 +1420,8 @@ const Dactyl = Module("dactyl", {
},
getAddonsByTypes: function (types, callback) {
let res = [];
for (let [,type] in Iterator(types))
for (let [,item] in Iterator(services.get("extensionManager")
for (let [, type] in Iterator(types))
for (let [, item] in Iterator(services.get("extensionManager")
.getItemList(Ci.nsIUpdateItem["TYPE_" + type.toUpperCase()], {})))
res.push(this.getAddonByID(item));
callback(res);