mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2025-09-10 13:54:41 +02:00
12 lines
226 B
JavaScript
12 lines
226 B
JavaScript
const hotkeyjs = require("hotkeys-js");
|
|
const hotkeys = {};
|
|
|
|
hotkeys.add = function(keys, func) {
|
|
hotkeyjs(keys, function(event, args) {
|
|
event.preventDefault();
|
|
func(event, args);
|
|
});
|
|
};
|
|
|
|
module.exports = hotkeys;
|