mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-20 10:03:29 +00:00
22 lines
684 B
JavaScript
22 lines
684 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;
|
|
};
|