You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var keypressListener = new window.keypress.Listener();
// Will print "uh oh" on the first press of the "a" key
//Should wait until third press of "a"
keypressListener.sequence_combo("a a a", function (e, combo) { console.log('uh oh") });
// Will print "uh oh" on the first press of the "b" key
//Should wait until second press of "b"
keypressListener.sequence_combo("a b b", function (e, combo) { console.log('uh oh") });
The text was updated successfully, but these errors were encountered:
var keypressListener = new window.keypress.Listener();
// Will print "uh oh" on the first press of the "a" key
//Should wait until third press of "a"
keypressListener.sequence_combo("a a a", function (e, combo) { console.log('uh oh") });
// Will print "uh oh" on the first press of the "b" key
//Should wait until second press of "b"
keypressListener.sequence_combo("a b b", function (e, combo) { console.log('uh oh") });
The text was updated successfully, but these errors were encountered: