11 lines
162 B
JavaScript
Raw Normal View History

2019-06-02 15:35:57 +02:00
const $dialog = $("#link-map-dialog");
async function showDialog() {
glob.activeDialog = $dialog;
$dialog.modal();
}
export default {
showDialog
};