mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-29 11:46:09 +01:00
4 lines
243 B
TypeScript
4 lines
243 B
TypeScript
export const openDock = (type: string) => {
|
|
document.getElementById("toolbarFile").dispatchEvent(new CustomEvent("click"));
|
|
document.querySelector("#sidebar .toolbar--border").dispatchEvent(new CustomEvent("click", {detail:type}));
|
|
};
|