questlab/www/analytics/libs/bower_components/mousetrap/plugins/bind-dictionary
2016-04-10 18:55:57 +02:00
..
mousetrap-bind-dictionary.js update Piwik to version 2.16 (fixes #91) 2016-04-10 18:55:57 +02:00
mousetrap-bind-dictionary.min.js update Piwik to version 2.16 (fixes #91) 2016-04-10 18:55:57 +02:00
README.md update Piwik to version 2.16 (fixes #91) 2016-04-10 18:55:57 +02:00

Bind Dictionary

This extension overwrites the default bind behavior and allows you to bind multiple combinations in a single bind call.

Usage looks like:

Mousetrap.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.