1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-28 12:55:45 +01:00

Formatting fixes.

This commit is contained in:
Doug Kearns
2009-11-14 21:57:32 +11:00
parent 607e65bf6f
commit 6cc43ad29a
11 changed files with 48 additions and 49 deletions

View File

@@ -91,7 +91,7 @@ const Bookmarks = Module("bookmarks", {
id = bookmarksService.getFolderIdForItem(id);
} while (id != bookmarksService.placesRoot && id != root);
return root;
}
};
this.isBookmark = function (id) rootFolders.indexOf(self.findRoot(id)) >= 0;
@@ -103,7 +103,7 @@ const Bookmarks = Module("bookmarks", {
id = bookmarksService.getFolderIdForItem(id);
} while (id != bookmarksService.placesRoot && id != root);
return rootFolders.indexOf(root) >= 0;
}
};
// since we don't use a threaded bookmark loading (by set preload)
// anymore, is this loading synchronization still needed? --mst