11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
|
import ConfirmationDialog from './ConfirmationDialog.html'
|
||
|
|
||
|
export function showConfirmationDialog(options) {
|
||
|
let dialog = new ConfirmationDialog({
|
||
|
target: document.getElementById('modal-dialog'),
|
||
|
data: Object.assign({
|
||
|
label: 'Confirmation dialog'
|
||
|
}, options)
|
||
|
})
|
||
|
dialog.show()
|
||
|
}
|