30bbbaf00b
* Make eslint sort our imports * fix missing deps in eslint rule (dae) Caught on Linux due to the stricter sandboxing * Remove exports-last eslint rule (for now?) * Adjust browserslist settings - We use ResizeObserver which is not supported in browsers like KaiOS, Baidu or Android UC * Raise minimum iOS version 13.4 - It's the first version that supports ResizeObserver * Apply new eslint rules to sort imports
35 lines
1.0 KiB
Svelte
35 lines
1.0 KiB
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import ButtonGroup from "../components/ButtonGroup.svelte";
|
|
import LabelButton from "../components/LabelButton.svelte";
|
|
import Shortcut from "../components/Shortcut.svelte";
|
|
import * as tr from "../lib/ftl";
|
|
import { getPlatformString } from "../lib/shortcuts";
|
|
import type { ChangeNotetypeState } from "./lib";
|
|
|
|
export let state: ChangeNotetypeState;
|
|
|
|
function save(): void {
|
|
if (document.activeElement instanceof HTMLElement) {
|
|
document.activeElement.blur();
|
|
}
|
|
state.save();
|
|
}
|
|
|
|
const keyCombination = "Control+Enter";
|
|
</script>
|
|
|
|
<ButtonGroup>
|
|
<LabelButton
|
|
theme="primary"
|
|
tooltip={getPlatformString(keyCombination)}
|
|
on:click={save}
|
|
--border-left-radius="5px"
|
|
--border-right-radius="5px">{tr.actionsSave()}</LabelButton
|
|
>
|
|
<Shortcut {keyCombination} on:action={save} />
|
|
</ButtonGroup>
|