Run prettier on most recent changes.

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2019-12-16 09:46:38 +00:00
parent 509574b6ab
commit 7c9d77d694
4 changed files with 44 additions and 11 deletions

View File

@@ -205,7 +205,10 @@ function addAdlist() {
} else showAlert("error", response.message);
},
error: function(jqXHR, exception) {
showAlert("error", "Error while adding new adlist: " + jqXHR.responseText);
showAlert(
"error",
"Error while adding new adlist: " + jqXHR.responseText
);
console.log(exception);
}
});
@@ -238,7 +241,10 @@ function editAdlist() {
} else showAlert("error", response.message);
},
error: function(jqXHR, exception) {
showAlert("error", "Error while editing adlist with ID " + id + ": " + jqXHR.responseText);
showAlert(
"error",
"Error while editing adlist with ID " + id + ": " + jqXHR.responseText
);
console.log(exception);
}
});
@@ -260,7 +266,10 @@ function deleteAdlist() {
} else showAlert("error", response.message);
},
error: function(jqXHR, exception) {
showAlert("error", "Error while deleting adlist with ID " + id + ": " + jqXHR.responseText);
showAlert(
"error",
"Error while deleting adlist with ID " + id + ": " + jqXHR.responseText
);
console.log(exception);
}
});