#issue_fix double click and opensvg issue fixed

This commit is contained in:
Agriya Dev5
2021-01-04 19:56:12 +05:30
parent 62d63b3efd
commit b173b6c2f7
4 changed files with 6 additions and 6 deletions

View File

@@ -1,8 +1,8 @@
// eslint-disable-next-line node/no-unpublished-import
import AlertDialog from 'elix/define/AlertDialog.js';
const dialog = new AlertDialog();
const seConfirm = async (text, choices) => {
const dialog = new AlertDialog();
dialog.textContent = text;
dialog.choices = (choices === undefined) ? ['Ok', 'Cancel'] : choices;
dialog.open();