mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-22 17:40:13 +01:00
6 lines
224 B
TypeScript
6 lines
224 B
TypeScript
|
|
export const showKeyboardToolbar = (bottom = 0) => {
|
||
|
|
const toolbarElement = document.getElementById("keyboardToolbar");
|
||
|
|
toolbarElement.classList.remove("fn__none");
|
||
|
|
toolbarElement.style.bottom = bottom + "px";
|
||
|
|
}
|