mirror of
https://github.com/zadam/trilium.git
synced 2024-11-18 13:41:59 +08: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
|
||
|
}
|