mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-19 17:43:39 +00:00
16 lines
620 B
JavaScript
16 lines
620 B
JavaScript
iD.ui.splash = function() {
|
|
var modal = iD.ui.modal();
|
|
|
|
modal.select('.modal')
|
|
.attr('class', 'modal-splash modal')
|
|
|
|
var introModal = modal.select('.content')
|
|
.append('div')
|
|
.attr('class', 'modal-section fillL');
|
|
|
|
introModal.append('div').attr('class','logo');
|
|
|
|
introModal.append('div').html("<h2 class>Welcome to the iD OpenStreetMap editor</h2><p>This is development version 0.0.0-alpha1. For more information see <a href='http://ideditor.com/'>ideditor.com</a> and report bugs at <a href='https://github.com'>github.com.systemed/iD</a>.</p>");
|
|
|
|
return modal;
|
|
}; |