File: README.md

package info (click to toggle)
node-mousetrap 1.6.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 236 kB
  • ctags: 212
  • sloc: makefile: 2; sh: 2
file content (15 lines) | stat: -rw-r--r-- 552 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Global Bind

This extension allows you to specify keyboard events that will work anywhere including inside textarea/input fields.

Usage looks like:

```javascript
Mousetrap.bindGlobal('ctrl+s', function() {
    _save();
});
```

This means that a keyboard event bound using ``Mousetrap.bind`` will only work outside of form input fields, but using ``Moustrap.bindGlobal`` will work in both places.

If you wanted to create keyboard shortcuts that only work when you are inside a specific textarea you can do that too by creating your own extension.