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

whitespace fixes

This commit is contained in:
Doug Kearns
2008-09-10 21:28:06 +00:00
parent e56d62aa27
commit 40ccef6cca

View File

@@ -102,15 +102,15 @@ liberator.Bookmarks = function () //{{{
}
var observer = {
onBeginUpdateBatch: function() {},
onEndUpdateBatch: function() {},
onItemVisited: function() {},
onBeginUpdateBatch: function () {},
onEndUpdateBatch: function () {},
onItemVisited: function () {},
/* FIXME: Should probably just update the given bookmark. */
onItemMoved: flush,
onItemAdded: flush,
onItemRemoved: flush,
onItemChanged: flush,
QueryInterface: function(iid) {
QueryInterface: function (iid) {
if (iid.equals(Components.interfaces.nsINavBookmarkObserver) || iid.equals(Components.interfaces.nsISupports))
return this;
throw Components.results.NS_ERROR_NO_INTERFACE;
@@ -492,7 +492,7 @@ liberator.Bookmarks = function () //{{{
liberator.commandline.echo(list, liberator.commandline.HL_NORMAL, liberator.commandline.FORCE_MULTILINE);
},
destroy: function()
destroy: function ()
{
bookmarksService.removeObserver(observer, false);
},