mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 13:52:26 +01:00
Fix hint processing bug.
This commit is contained in:
@@ -357,9 +357,9 @@ var HintSession = Class("HintSession", CommandMode, {
|
|||||||
*
|
*
|
||||||
* @param {Event} event The event to handle.
|
* @param {Event} event The event to handle.
|
||||||
*/
|
*/
|
||||||
onKeyPress: function onKeyPress(events) {
|
onKeyPress: function onKeyPress(eventList) {
|
||||||
const KILL = false, PASS = true;
|
const KILL = false, PASS = true;
|
||||||
let key = events.toString(events[0]);
|
let key = events.toString(eventList[0]);
|
||||||
|
|
||||||
this.clearTimeout();
|
this.clearTimeout();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user