mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-05-18 11:37:33 +08:00
WIP
This commit is contained in:
26
js/input/keybaord/KeyboardIgnoreSelectAll.js
Executable file
26
js/input/keybaord/KeyboardIgnoreSelectAll.js
Executable file
@@ -0,0 +1,26 @@
|
||||
// @ts-check
|
||||
|
||||
import KeyboardSelectAll from "./KeyboardSelectAll"
|
||||
|
||||
export default class KeyboardIgnoreSelectAll extends KeyboardSelectAll {
|
||||
|
||||
/**
|
||||
* @param {HTMLElement} target
|
||||
* @param {any} blueprint
|
||||
* @param {Object} options
|
||||
*/
|
||||
constructor(target, blueprint, options = {}) {
|
||||
options = {
|
||||
...options,
|
||||
activationKeys: blueprint.settings.selectAllKeyboardKey
|
||||
}
|
||||
super(target, blueprint, options)
|
||||
}
|
||||
|
||||
fire() {
|
||||
}
|
||||
|
||||
unfire() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user