var layers = [
new L.OSM.Mapnik({
- attribution: copyright+" – "+donate,
+ attribution: copyright + " ♥ " + donate,
code: "M",
keyid: "mapnik",
name: I18n.t("javascripts.map.base.standard")
map.getCenter().lng.toFixed(precision)));
});
+ function removeSidebar() {
+ if ($(window).width() < 721) {
+ $('#sidebar').addClass("minimized");
+ }
+ }
+
+ $(window).resize(function() {
+ removeSidebar();
+ });
+
+ removeSidebar();
+
});