1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 22:08:00 +01:00

forgot to remove a debug output

This commit is contained in:
Martin Stubenschrott
2008-08-16 10:21:49 +00:00
parent db52595c28
commit 3f5f7ee214

View File

@@ -505,7 +505,7 @@ liberator.History = function () //{{{
for (var i = 0; i < rootNode.childCount; i++)
{
var node = rootNode.getChild(i);
dump("History child " + node.itemId + ": " + node.title + " - " + node.type + "\n");
// dump("History child " + node.itemId + ": " + node.title + " - " + node.type + "\n");
if (node.type == node.RESULT_TYPE_URI) // just make sure it's a bookmark
history.push([node.uri, node.title || "[No title]"]);
}