diff --git a/content/bookmarks.js b/content/bookmarks.js index 4ba88b4e..cdf882c4 100644 --- a/content/bookmarks.js +++ b/content/bookmarks.js @@ -584,22 +584,22 @@ with (liberator) liberator.History = function () //{{{ mappings.add(myModes, [""], "Go to an older position in the jump list", - function (count) { history.stepTo(-(count > 1 ? count : 1)); }, + function (count) { liberator.history.stepTo(-(count > 1 ? count : 1)); }, { flags: Mappings.flags.COUNT }); mappings.add(myModes, [""], "Go to a newer position in the jump list", - function (count) { history.stepTo(count > 1 ? count : 1); }, + function (count) { liberator.history.stepTo(count > 1 ? count : 1); }, { flags: Mappings.flags.COUNT }); mappings.add(myModes, ["H", "", ""], "Go back in the browser history", - function (count) { history.stepTo(-(count > 1 ? count : 1)); }, + function (count) { liberator.history.stepTo(-(count > 1 ? count : 1)); }, { flags: Mappings.flags.COUNT }); mappings.add(myModes, ["L", "", ""], "Go forward in the browser history", - function (count) { history.stepTo(count > 1 ? count : 1); }, + function (count) { liberator.history.stepTo(count > 1 ? count : 1); }, { flags: Mappings.flags.COUNT }); /////////////////////////////////////////////////////////////////////////////}}} @@ -631,7 +631,7 @@ with (liberator) liberator.History = function () //{{{ } else { - history.stepTo(count > 0 ? -1 * count : -1); + liberator.history.stepTo(count > 0 ? -1 * count : -1); } } }, @@ -679,7 +679,7 @@ with (liberator) liberator.History = function () //{{{ } else { - history.stepTo(count > 0 ? count : 1); + liberator.history.stepTo(count > 0 ? count : 1); } } },