The Keyboard interface of the the Keyboard API provides functions retrieve keyboard layout maps and toggle capturing of key presses the physical keyboard.
The Keyboard interface of the the Keyboard API provides functions retrieve keyboard layout maps and toggle capturing of key presses the physical keyboard.
(get-layout-map this)
Method.
[Experimental]
The getLayoutMap() method of the web.keyboard.Keyboard
interface
a js.Promise
that resolves with an instance of web.keyboard.KeyboardLayoutMap
is a map-like object with functions for retrieving the strings
with specific physical keys.
var promise = Keyboard.getLayoutMap()
See also: https://developer.mozilla.org/en-US/docs/Web/API/Keyboard/getLayoutMap
Method. [Experimental] The getLayoutMap() method of the `web.keyboard.Keyboard` interface a `js.Promise` that resolves with an instance of `web.keyboard.KeyboardLayoutMap` is a map-like object with functions for retrieving the strings with specific physical keys. `var promise = Keyboard.getLayoutMap()` See also: `https://developer.mozilla.org/en-US/docs/Web/API/Keyboard/getLayoutMap`
(lock this & args)
Method.
[Experimental]
The lock() method of the web.keyboard.Keyboard
interface returns
js.Promise
after enabling the capture of keypresses for any
all of the keys on the physical keyboard. This method can only
keys that are granted access by the underlying operating system.
var promise = Keyboard.lock([keyCodes[]])
See also: https://developer.mozilla.org/en-US/docs/Web/API/Keyboard/lock
Method. [Experimental] The lock() method of the `web.keyboard.Keyboard` interface returns `js.Promise` after enabling the capture of keypresses for any all of the keys on the physical keyboard. This method can only keys that are granted access by the underlying operating system. `var promise = Keyboard.lock([keyCodes[]])` See also: `https://developer.mozilla.org/en-US/docs/Web/API/Keyboard/lock`
(unlock this)
Method.
[Experimental]
The unlock() method of the web.keyboard.Keyboard
interface
all keys captured by the Keyboard.lock()
method and returns
Keyboard.unlock()
See also: https://developer.mozilla.org/en-US/docs/Web/API/Keyboard/unlock
Method. [Experimental] The unlock() method of the `web.keyboard.Keyboard` interface all keys captured by the `Keyboard.lock()` method and returns `Keyboard.unlock()` See also: `https://developer.mozilla.org/en-US/docs/Web/API/Keyboard/unlock`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close