UNPKG

svgedit

Version:

Powerful SVG-Editor for your browser

11 lines (8 loc) 235 B
import SePlainAlertDialog from './SePlainAlertDialog.js'; const seAlert = (text) => { const dialog = new SePlainAlertDialog(); dialog.textContent = text; dialog.choices = [ 'Ok' ]; dialog.open(); }; window.seAlert = seAlert;