From 6d3b674064849466ed7aa0d0bfa0b63bacebae33 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sun, 19 Aug 2007 17:21:00 +0000 Subject: [PATCH] use TH to markup the table headers in :marks/:qmarks output...again --- chrome/content/vimperator/bookmarks.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chrome/content/vimperator/bookmarks.js b/chrome/content/vimperator/bookmarks.js index f506a132..9c3ae7bd 100644 --- a/chrome/content/vimperator/bookmarks.js +++ b/chrome/content/vimperator/bookmarks.js @@ -300,7 +300,7 @@ function Bookmarks() //{{{ match_tags = str.match(re_tags); if (match_tags != null) { - str = match_tags[match_tags.length-1]; // the last captured parenthesis is the rest of the string + str = match_tags[match_tags.length - 1]; // the last captured parenthesis is the rest of the string tags = match_tags[3].split(","); res.tags = res.tags.concat(tags); } @@ -382,7 +382,7 @@ function History() //{{{ var builder = historytree.builder.QueryInterface(Components.interfaces.nsIXULTreeBuilder); var count = historytree.view.rowCount; - for (var i = count-1; i >= 0; i--) + for (var i = count - 1; i >= 0; i--) { var res = builder.getResourceAtIndex(i); var url = res.Value; @@ -743,7 +743,7 @@ function Marks() //{{{ } } - var list = ""; + var list = "
marklinecolfile
"; for (var i = 0; i < marks.length; i++) { list += "" @@ -838,7 +838,7 @@ function QuickMarks() //{{{ } } - var list = "
marklinecolfile
"; + var list = "
QuickMarkURL
"; for (var i = 0; i < marks.length; i++) { list += "";
QuickMarkURL
    " + marks[i][0] + "" + marks[i][1] + "