From 226e7e6add1bad127bc3d82bfa590e9f5c27b8c8 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Sun, 1 Mar 2009 02:59:08 +1100 Subject: [PATCH] Remove a trailing comma from an object literal. --- common/content/ui.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/ui.js b/common/content/ui.js index 6fdf8239..b006d116 100644 --- a/common/content/ui.js +++ b/common/content/ui.js @@ -1210,7 +1210,7 @@ function CommandLine() //{{{ submit: callback, change: extra.onChange, complete: extra.completer, - cancel: extra.onCancel, + cancel: extra.onCancel }; modes.push(modes.COMMAND_LINE, modes.PROMPT); @@ -1710,7 +1710,7 @@ function ItemList(id) //{{{ if (!iframe) { liberator.log("No iframe with id: " + id + " found, strange things may happen!"); // "The truth is out there..." -- djk - return; + return; // XXX } function dom(xml, map) util.xmlToDom(xml, doc, map);