anki/ts/editor/helpers.ts

17 lines
539 B
TypeScript
Raw Normal View History

2021-04-13 10:57:08 +02:00
// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
2021-02-09 04:38:04 +01:00
/// trivial wrapper to silence Svelte deprecation warnings
export function execCommand(
command: string,
showUI?: boolean | undefined,
value?: string | undefined,
): void {
document.execCommand(command, showUI, value);
}
/// trivial wrapper to silence Svelte deprecation warnings
export function queryCommandState(command: string): boolean {
return document.queryCommandState(command);
}