Welcome to mirror list, hosted at ThFree Co, Russian Federation.

README.md « bind-dictionary « plugins « mousetrap « bower_components « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f956b6f1f1cdb1f1fa5ac28f81370b6c74d0c2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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.