UNPKG
superhuman-mousetrap
Version:
latest (1.5.3-sh.1)
1.5.3-sh.1
Simple library for handling keyboard shortcuts
github.com/superhuman/mousetrap
superhuman/mousetrap
superhuman-mousetrap
/
plugins
/
pause
/
mousetrap-pause.min.js
2 lines
(1 loc)
•
242 B
JavaScript
View Raw
1
2
(
function
(
a
){
var
b=a.
prototype
.
stopCallback
;a.
prototype
.
stopCallback
=
function
(
a,c,d
){
return
this
.
paused
?!
0
:b.
call
(
this
,a,c,d)};a.
prototype
.
pause
=
function
(
){
this
.
paused
=!
0
};a.
prototype
.
unpause
=
function
(
){
this
.
paused
=!
1
};a.
init
()})(
Mousetrap
);