1
0
silverbullet/plugs/editor/client.ts

8 lines
229 B
TypeScript
Raw Normal View History

2023-08-28 15:12:15 +00:00
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();
}