UNPKG

combokeys

Version:

Handles keyboard shortcuts in the browser

21 lines (14 loc) 567 B
# Bind Dictionary This extension overwrites the default bind behavior and allows you to bind multiple combinations in a single bind call. Usage looks like: ```javascript var Combokeys = require('combokeys'); var combokeys = new Combokeys(element); require('combokeys/plugins/bind-dictionary')(combokeys); combokeys.bind({ 'a': function() { console.log('a'); }, 'b': function() { console.log('b'); } }); ``` You can optionally pass in ``keypress``, ``keydown`` or ``keyup`` as a second argument. Other bind calls work the same way as they do by default.