1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-12-22 09:02:11 +03:00

Keybinding code unification #3 (#7850)

This commit is contained in:
Šimon Brandner
2022-02-23 10:12:04 +01:00
committed by GitHub
parent b0737b6e31
commit 93a9af7b3a
9 changed files with 214 additions and 81 deletions

View File

@@ -309,6 +309,12 @@ export default abstract class BasePlatform {
return false;
}
public overrideBrowserShortcuts(): boolean {
return false;
}
public navigateForwardBack(back: boolean): void {}
getAvailableSpellCheckLanguages(): Promise<string[]> | null {
return null;
}