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

@ -3,21 +3,20 @@ OSM.Changeset = function (map) {
content = $("#sidebar_content"),
currentChangesetId;
page.pushstate = page.popstate = function(path, id) {
OSM.loadSidebarContent(path, function() {
page.pushstate = page.popstate = function (path, id) {
OSM.loadSidebarContent(path, function () {
page.load(path, id);
});
};
page.load = function(path, id) {
if (id)
currentChangesetId = id;
page.load = function (path, id) {
if (id) currentChangesetId = id;
initialize();
addChangeset(currentChangesetId, true);
};
function addChangeset(id, center) {
map.addObject({type: "changeset", id: parseInt(id, 10)}, function(bounds) {
map.addObject({ type: "changeset", id: parseInt(id, 10) }, function (bounds) {
if (!window.location.hash && bounds.isValid() &&
(center || !map.getBounds().contains(bounds))) {
OSM.router.withoutMoveListener(function () {
@ -33,7 +32,7 @@ OSM.Changeset = function (map) {
$(form).find("input[type=submit]").prop("disabled", true);
if (include_data) {
data = {text: $(form.text).val()};
data = { text: $(form.text).val() };
} else {
data = {};
}
@ -75,7 +74,7 @@ OSM.Changeset = function (map) {
content.find("textarea").val("").trigger("input");
}
page.unload = function() {
page.unload = function () {
map.removeObject();
};