Files
ueblueprint/js/input/keybaord/KeyboardIgnoreSelectAll.js
barsdeveloper e901932953 WIP
2022-04-02 11:13:34 +02:00

27 lines
545 B
JavaScript
Executable File

// @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() {
}
}