mv mousetrap-global-bind/mousetrap-global-bind.d.ts -> mousetrap/mousetrap-global-bind.d.ts

This commit is contained in:
vvakame
2014-11-09 00:14:20 +09:00
parent db084916cc
commit 0607d042b4
2 changed files with 1 additions and 1 deletions
+42
View File
@@ -0,0 +1,42 @@
/// <reference path="mousetrap-global-bind.d.ts"/>
Mousetrap.globalBind('4', function() { console.log('4'); });
Mousetrap.globalBind("?", function() { console.log('show shortcuts!'); });
Mousetrap.globalBind('esc', function() { console.log('escape'); }, 'keyup');
// combinations
Mousetrap.globalBind('command+shift+K', function() { console.log('command shift k'); });
// map multiple combinations to the same callback
Mousetrap.globalBind(['command+k', 'ctrl+k'], function() {
console.log('command k or control k');
// return false to prevent default browser behavior
// and stop event from bubbling
return false;
});
// gmail style sequences
Mousetrap.globalBind('g i', function() { console.log('go to inbox'); });
Mousetrap.globalBind('* a', function() { console.log('select all'); });
// konami code!
Mousetrap.globalBind('up up down down left right left right b a enter', function() {
console.log('konami code');
});
Mousetrap.globalBind(['ctrl+s', 'meta+s'], (e, combo) => {
if (e.preventDefault) {
e.preventDefault();
} else {
// internet explorer
e.returnValue = false;
}
});
Mousetrap.unbind('?');
Mousetrap.trigger('esc');
Mousetrap.trigger('esc', 'keyup');
Mousetrap.reset();
+11
View File
@@ -0,0 +1,11 @@
// Type definitions for Mousetrap 1.4.6's global-bind extension
// Project: http://craig.is/killing/mice#extensions.global
// Definitions by: Andrew Bradley <https://github.com/cspotcode>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="./mousetrap.d.ts" />
interface MousetrapStatic {
globalBind(keys: string, callback: (e: ExtendedKeyboardEvent, combo: string) => any, action?: string): void;
globalBind(keyArray: string[], callback: (e: ExtendedKeyboardEvent, combo: string) => any, action?: string): void;
}