$('.leaflet-control .control-button').tooltip({placement: 'left', container: 'body'});
+ var expiry = new Date();
+ expiry.setYear(expiry.getFullYear() + 10);
+
map.on('moveend layeradd layerremove', function() {
updatelinks(
map.getCenter().wrap(),
map.getLayersCode(),
map._object);
- var expiry = new Date();
- expiry.setYear(expiry.getFullYear() + 10);
$.cookie("_osm_location", cookieContent(map), { expires: expiry });
});
+ if ($.cookie('_osm_welcome') == 'hide') {
+ $('.welcome').hide();
+ }
+
+ $('.welcome .close').on('click', function() {
+ $('.welcome').hide();
+ $.cookie("_osm_welcome", 'hide', { expires: expiry });
+ });
+
if (OSM.PIWIK) {
map.on('layeradd', function (e) {
if (e.layer.options) {
<% unless @user %>
<div class="welcome">
- <h2><%= t 'layouts.intro_header' %></h2>
+ <h2><a><span class="icon close"></span></a><%= t 'layouts.intro_header' %></h2>
<p><%= t 'layouts.intro_text' %></p>
<a class="button learn-more" href="<%= about_path %>"><%= t('layouts.learn_more') %></a>
<a class="button sign-up" href="<%= user_new_path %>"><%= t('layouts.start_mapping') %></a>