thelounge/client/dist/js/helpers/isIgnoredKeybind.js
2022-05-21 11:47:49 -07:00

12 lines
427 B
JavaScript

"use strict";
export default (event) => {
if (event.target.tagName !== "TEXTAREA" && event.target.tagName !== "INPUT") {
return false;
}
// If focus is in a textarea, do not handle keybinds if user has typed anything
// This is done to prevent keyboard layout binds conflicting with ours
// For example alt+shift+left on macos selects a word
return !!event.target.value;
};
//# sourceMappingURL=isIgnoredKeybind.js.map