Контакты
email:
skype:
© 2008 – 2021
Вернуться
» » » keymaster - микро js библиотека навешивания горячих клавиш

keymaster - микро js библиотека навешивания горячих клавиш


// define short of 'a'
key('a', function(){ alert('you pressed a!') });

// returning false stops the event and prevents default browser events
key('ctrl+r', function(){ alert('stopped reload!'); return false });

// multiple shortcuts that do the same thing
key('?+r, ctrl+r', function(){ });

https://github.com/madrobby/keymaster
Оставить комментарий
Вверх