From b1042eb74c3f5bfa3c3909416e7dffc27295373f Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Fri, 5 Aug 2011 21:06:29 -0400 Subject: [PATCH] Fix scrolling commands. --- common/content/events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/events.js b/common/content/events.js index 02accd95..0b9d5f47 100644 --- a/common/content/events.js +++ b/common/content/events.js @@ -231,7 +231,7 @@ var KeyProcessor = Class("KeyProcessor", { countStr: "", command: "", - get count() this.countStr ? Number(this.countStr) : this.main.params.count, + get count() this.countStr ? Number(this.countStr) : this.main.params.count || null, append: function append(event) { this.events.push(event);