From 7254ce59108129a35bf378869364a365e276c20d Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Mon, 10 Jan 2011 14:48:03 +1100 Subject: [PATCH] Fix /. Closes issue #252. --- common/content/buffer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/buffer.js b/common/content/buffer.js index 63472062..8da18e26 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -776,7 +776,7 @@ var Buffer = Module("buffer", { if (options["scroll"] > 0) this.scrollLines(options["scroll"] * direction); else - this.scrollPages(direction / 2); + this.scrollVertical("pages", direction / 2); }, findScrollable: function findScrollable(dir, horizontal) {