From 253346dbc3605583fa81411b86ae045d5a628a55 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Tue, 23 Dec 2008 01:32:24 +1100 Subject: [PATCH] Remove trailing commas from object initializers. --- common/content/hints.js | 2 +- common/content/options.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/hints.js b/common/content/hints.js index 35b81fd4..edca3fb6 100644 --- a/common/content/hints.js +++ b/common/content/hints.js @@ -80,7 +80,7 @@ function Hints() //{{{ T: Mode("Open new tab based on hint", function (elem, loc) commandline.open(":", "tabopen " + loc, modes.EX)), W: Mode("Open new window based on hint", function (elem, loc) commandline.open(":", "winopen " + loc, modes.EX)), y: Mode("Yank hint location", function (elem, loc) util.copyToClipboard(loc, true)), - Y: Mode("Yank hint description", function (elem) util.copyToClipboard(elem.textContent || "", true), extended), + Y: Mode("Yank hint description", function (elem) util.copyToClipboard(elem.textContent || "", true), extended) }; // reset all important variables diff --git a/common/content/options.js b/common/content/options.js index 48862381..43c17d62 100644 --- a/common/content/options.js +++ b/common/content/options.js @@ -1029,7 +1029,7 @@ function Options() //{{{ { this.popContext(); } - }, + } }; //}}} }; //}}}