move to standard linter for simpler configuration
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
import SePlainAlertDialog from './SePlainAlertDialog.js';
|
||||
import SePlainAlertDialog from './SePlainAlertDialog.js'
|
||||
|
||||
const seAlert = (text) => {
|
||||
const dialog = new SePlainAlertDialog();
|
||||
dialog.textContent = text;
|
||||
dialog.choices = [ 'Ok' ];
|
||||
dialog.open();
|
||||
};
|
||||
const dialog = new SePlainAlertDialog()
|
||||
dialog.textContent = text
|
||||
dialog.choices = ['Ok']
|
||||
dialog.open()
|
||||
}
|
||||
|
||||
window.seAlert = seAlert;
|
||||
window.seAlert = seAlert
|
||||
|
||||
Reference in New Issue
Block a user