N°5621 Move mousetrap 1.6.5 to NPM

This commit is contained in:
Pierre Goiffon
2024-02-16 16:37:46 +01:00
parent d4c54b6e1c
commit ff079f7d01
33 changed files with 2947 additions and 2 deletions

View File

@@ -0,0 +1,16 @@
# 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
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.