UNPKG

betajs-browser

Version:

BetaJS-Browser is a client-side JavaScript framework for Browser-specific methods.

20 lines 485 B
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Hotkey</title> <script src="../node_modules/betajs-scoped/dist/scoped.js"></script> <script src="../node_modules/betajs/dist/beta-noscoped.js"></script> <script src="../dist/betajs-browser-noscoped.js"></script> </head> <body> <input /> <script> BetaJS.Browser.Hotkeys.register("Ctrl+T", function () { alert("Test"); }, this, { disable_in_input: true }); </script> </body> </html>