Fix previous spellcheck errors

Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
This commit is contained in:
RD WebDesign
2023-06-30 20:35:34 -03:00
parent 702f403696
commit ef513c2c48
9 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ function handleAjaxError(xhr, textStatus) {
if (textStatus === "timeout") {
alert("The server took too long to send the data.");
} else {
alert("An unknown error occured while loading the data.\n" + xhr.responseText);
alert("An unknown error occurred while loading the data.\n" + xhr.responseText);
}
table.clear();
+1 -1
View File
@@ -69,7 +69,7 @@ function handleAjaxError(xhr, textStatus) {
if (textStatus === "timeout") {
alert("The server took too long to send the data.");
} else {
alert("An unknown error occured while loading the data.\n" + xhr.responseText);
alert("An unknown error occurred while loading the data.\n" + xhr.responseText);
}
$("#all-queries_processing").hide();
+1 -1
View File
@@ -38,7 +38,7 @@ $(function () {
rowCallback: function (row, data) {
// Split record in format IP NAME1 [NAME2 [NAME3 [NAME...]]]
var ip = data.substring(0, data.indexOf(" "));
// The name can be mulitple domains separated by spaces
// The name can be multiple domains separated by spaces
var name = data.substring(data.indexOf(" ") + 1);
$(row).attr("data-id", data);
+1 -1
View File
@@ -52,6 +52,6 @@ available_themes['lcars'] = {
color = '#4488FF'
}
-- Get properties of currenty selected theme by asking FTL what the currently
-- Get properties of currently selected theme by asking FTL what the currently
-- enabled theme is
theme = available_themes[pihole.webtheme()]