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

add liberator.dump() to prefix dump() messages with our extension name

This commit is contained in:
Doug Kearns
2008-09-08 04:41:23 +00:00
parent b9f71d1bd9
commit f12f956e41
6 changed files with 25 additions and 19 deletions

View File

@@ -509,7 +509,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");
//liberator.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]"]);
}