1
0
silverbullet/plugs/editor/client.ts
2023-08-28 17:12:15 +02:00

8 lines
229 B
TypeScript

import { editor } from "$sb/syscalls.ts";
export async function setThinClient(def: any) {
console.log("Setting thin client to", def.value);
await editor.setUiOption("thinClientMode", def.value);
await editor.reloadUI();
}