mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-28 02:22:26 +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
|
||
|
}
|