From 80b49b3f10eec2508964c9038ab26185d0582133 Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 16 Feb 2011 13:20:46 -0500 Subject: [PATCH] Fix hint processing bug. --- common/content/hints.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/hints.js b/common/content/hints.js index d6db07cb..bd27ef2b 100644 --- a/common/content/hints.js +++ b/common/content/hints.js @@ -357,9 +357,9 @@ var HintSession = Class("HintSession", CommandMode, { * * @param {Event} event The event to handle. */ - onKeyPress: function onKeyPress(events) { + onKeyPress: function onKeyPress(eventList) { const KILL = false, PASS = true; - let key = events.toString(events[0]); + let key = events.toString(eventList[0]); this.clearTimeout();