mirror of
https://github.com/pi-hole/web.git
synced 2024-12-06 19:36:21 +01:00
Fix previous spellcheck errors
Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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()]
|
||||
|
||||
Reference in New Issue
Block a user