Fix some JSHint complaints

This commit is contained in:
Tom Hughes 2015-02-23 20:47:38 +00:00
parent 6671a934bf
commit 1596713871
22 changed files with 96 additions and 93 deletions

View file

@ -17,7 +17,7 @@ OSM.Changeset = function (map) {
};
function addChangeset(id, center) {
var bounds = map.addObject({type: 'changeset', id: parseInt(id)}, function(bounds) {
map.addObject({type: 'changeset', id: parseInt(id)}, function(bounds) {
if (!window.location.hash && bounds.isValid() &&
(center || !map.getBounds().contains(bounds))) {
OSM.router.withoutMoveListener(function () {
@ -28,7 +28,10 @@ OSM.Changeset = function (map) {
}
function updateChangeset(form, method, url, include_data) {
var data;
$(form).find("input[type=submit]").prop("disabled", true);
if(include_data) {
data = {text: $(form.text).val()};
} else {
@ -62,7 +65,7 @@ OSM.Changeset = function (map) {
content.find("textarea").on("input", function (e) {
var form = e.target.form;
if ($(e.target).val() == "") {
if ($(e.target).val() === "") {
$(form.comment).prop("disabled", true);
} else {
$(form.comment).prop("disabled", false);
@ -70,11 +73,11 @@ OSM.Changeset = function (map) {
});
content.find("textarea").val('').trigger("input");
};
}
page.unload = function() {
map.removeObject();
};
return page;
};
};