mirror of
https://github.com/pi-hole/web.git
synced 2026-05-03 23:18:12 +01:00
Run prettier on most recent changes.
Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user