accordignly => accordingly

Signed-off-by: RD WebDesign <github@rdwebdesign.com.br>
This commit is contained in:
RD WebDesign
2023-10-07 14:41:50 -03:00
parent 0f6b917ae1
commit 555b2ebb35

View File

@@ -107,12 +107,12 @@ function saveSettings() {
value = value === "" ? [] : value.split("\n");
}
// If this is an integer number, parse it accordignly
// If this is an integer number, parse it accordingly
if ($(this).data("type") === "integer") {
value = parseInt(value, 10);
}
// If this is a floating point value, parse it accordignly
// If this is a floating point value, parse it accordingly
if ($(this).data("type") === "float") {
value = parseFloat(value);
}