1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 18:24:11 +01:00

fixed bookmarks to work with newer FF3 API

This commit is contained in:
Martin Stubenschrott
2008-01-02 12:52:21 +00:00
parent 6f59f0092c
commit 58efd457dd
3 changed files with 3 additions and 4 deletions

View File

@@ -83,7 +83,8 @@ vimperator.Bookmarks = function () //{{{
if (kw)
keywords.push([kw, node.title, node.uri]);
var tags = taggingService.getTagsForURI(ioService.newURI(node.uri, null, null));
var count = {};
var tags = taggingService.getTagsForURI(ioService.newURI(node.uri, null, null), count);
bookmarks.push([node.uri, node.title, kw, tags]);
}
}