frontend/.pnpm-store/v3/files/4c/8475d65ffe1e8a1ed22904710763fa8c233e677b4d34f271ce21f32312f34a9ace0e77efffd0bb32cde7e9e6d9d790ce33601ae08c3209f587321eb3c0201d

14 lines
291 B
Plaintext

# Pause/unpause
This extension allows Mousetrap to be paused and unpaused without having to reset keyboard shortcuts and rebind them.
Usage looks like:
```javascript
// stop Mousetrap events from firing
Mousetrap.pause();
// allow Mousetrap events to fire again
Mousetrap.unpause();
```