var $ui = $('<div>')
.attr('class', 'layers-ui');
- $('<section>')
- .appendTo($ui)
- .append(
- $('<a>')
- .html('»')
- .attr('class', 'close-button')
- .attr('href', '#')
- .bind('click', toggle))
- .append(
- $('<h2>')
+ $('<div>')
+ .attr('class', 'sidebar_heading')
+ .appendTo($ui)
+ .append(
+ $('<a>')
+ .text(I18n.t('javascripts.close'))
+ .attr('class', 'sidebar_close')
+ .attr('href', '#')
+ .bind('click', toggle))
+ .append(
+ $('<h4>')
.text(I18n.t('javascripts.map.layers.header')));
- var baseSection = $('<section>')
- .addClass('base-layers')
+ var baseSection = $('<div>')
+ .attr('class', 'section base-layers')
.appendTo($ui);
- $('<p>')
- .text(I18n.t('javascripts.map.layers.base'))
- .appendTo(baseSection);
-
list = $('<ul>')
.appendTo(baseSection);
});
if (OSM.STATUS != 'api_offline' && OSM.STATUS != 'database_offline') {
- var overlaySection = $('<section>')
- .addClass('overlay-layers')
+ var overlaySection = $('<div>')
+ .attr('class', 'section overlay-layers')
.appendTo($ui);
$('<p>')