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