Enable a number of eslint style rules

This commit is contained in:
Tom Hughes 2019-04-07 17:02:39 +01:00
parent 8030e7b5d6
commit 5bd59e1936
28 changed files with 278 additions and 240 deletions

View file

@ -1,4 +1,4 @@
OSM.Export = function(map) {
OSM.Export = function (map) {
var page = {};
var locationFilter = new L.LocationFilter({
@ -57,12 +57,12 @@ OSM.Export = function(map) {
if (getBounds().getSize() > OSM.MAX_REQUEST_AREA) e.preventDefault();
}
page.pushstate = page.popstate = function(path) {
page.pushstate = page.popstate = function (path) {
$("#export_tab").addClass("current");
OSM.loadSidebarContent(path, page.load);
};
page.load = function() {
page.load = function () {
map
.addLayer(locationFilter)
.on("moveend", update);
@ -75,7 +75,7 @@ OSM.Export = function(map) {
return map.getState();
};
page.unload = function() {
page.unload = function () {
map
.removeLayer(locationFilter)
.off("moveend", update);