Remove "true" return value from event handler

* this does not change any semantics
This commit is contained in:
Henrik Giesel 2021-02-28 14:29:41 +01:00
parent 2f46c69ed6
commit a8bde2d13c

View file

@ -10,9 +10,8 @@ function onPaste(evt: ClipboardEvent): void {
evt.preventDefault();
}
function onCutOrCopy(): boolean {
function onCutOrCopy(): void {
bridgeCommand("cutOrCopy");
return true;
}
export class EditingArea extends HTMLDivElement {