mirror of
https://github.com/zadam/trilium.git
synced 2025-10-29 17:26:38 +01:00
11 lines
157 B
JavaScript
11 lines
157 B
JavaScript
|
|
const $dialog = $("#help-dialog");
|
||
|
|
|
||
|
|
async function showDialog() {
|
||
|
|
glob.activeDialog = $dialog;
|
||
|
|
|
||
|
|
$dialog.modal();
|
||
|
|
}
|
||
|
|
|
||
|
|
export default {
|
||
|
|
showDialog
|
||
|
|
}
|