mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-18 17:13:31 +00:00
15 lines
369 B
JavaScript
15 lines
369 B
JavaScript
iD.confirm = function(message) {
|
|
var modal = iD.modal();
|
|
modal.select('.modal').classed('modal-alert', true);
|
|
modal.select('.content')
|
|
.append('p').attr('class', 'description');
|
|
modal.select('.content')
|
|
.append('button')
|
|
.text('OK')
|
|
.on('click', function() {
|
|
modal.remove();
|
|
});
|
|
|
|
return modal;
|
|
};
|