dmauro / Keypress

A keyboard input capturing utility in which any key can be a modifier key.
http://dmauro.github.io/Keypress/
Apache License 2.0
3.18k stars 313 forks source link

Sequence timer not clearing sequence #119

Open zwalker opened 8 years ago

zwalker commented 8 years ago

// will print 'uh oh' even after 800ms timeout has passed in between key strokes. var keypressListener = new window.keypress.Listener(); keypressListener.sequence_combo("a b c", function(e, combo) { console.log('uh oh'); });

See PR https://github.com/dmauro/Keypress/pull/118