1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 10:57:58 +01:00

Turn JS completion caching back on

This commit is contained in:
Kris Maglione
2008-11-22 20:58:56 +00:00
parent 5db27607ad
commit 76a5b4cf7a
3 changed files with 42 additions and 41 deletions

View File

@@ -76,7 +76,6 @@ function Bookmarks() //{{{
let uri = ioService.newURI(node.uri, null, null);
let keyword = bookmarksService.getKeywordForBookmark(node.itemId);
let tags = taggingService.getTagsForURI(uri, {}) || [];
//return bookmarks.push(new Bookmark(node.uri, node.title, null, keyword, tags, node.itemId));
return bookmarks.push(new Bookmark(node.uri, node.title, null, keyword, tags, node.itemId));
}