mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-14 17:52:55 +00:00
10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
iD.loading = function(message) {
|
|
var modal = iD.modal();
|
|
|
|
modal.select('.content')
|
|
.classed('loading-modal', true)
|
|
.text(message || '');
|
|
|
|
return modal;
|
|
};
|