1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 03:17:58 +01:00

Fix hint processing bug.

This commit is contained in:
Kris Maglione
2011-02-16 13:20:46 -05:00
parent 928572fa0d
commit 80b49b3f10

View File

@@ -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();