Compare commits

...

3 Commits

Author SHA1 Message Date
Julian Metzler 47fdf1608e canvas: Use text() instead of html() 2024-02-07 23:22:31 +01:00
Julian Metzler d16adcaaae k8200_pst: Increase rotation timeout 2024-02-07 23:22:14 +01:00
Julian Metzler 6a7ad611e0 canvas: Rename home_pos to home for selection displays 2024-02-07 18:52:39 +01:00
2 changed files with 5 additions and 5 deletions

View File

@ -312,14 +312,14 @@
// Add home position
let option = $("<option>");
option.attr("value", unit["home_pos"]);
option.html("&lt;Home&gt;");
option.attr("value", unit["home"]);
option.text("<Home>");
input.append(option);
for (const [key, value] of Object.entries(map)) {
let option = $("<option>");
option.attr("value", key);
option.html(value);
option.text(value);
input.append(option);
}
}
@ -851,7 +851,7 @@
function onGetDeviceInfoSuccess(data, textStatus, jqXHR) {
document.title += " - " + data['hostname'];
$("#hostname").html(data['hostname']);
$("#hostname").text(data['hostname']);
}
function onGetDeviceInfoError(jqXHR, textStatus, errorThrown) {

View File

@ -1287,7 +1287,7 @@ CONFIG_K8200_PST_SEL_UART_1=y
# CONFIG_K8200_PST_SEL_UART_2 is not set
CONFIG_K8200_PST_SEL_RX_BUF_SIZE=256
CONFIG_K8200_PST_SEL_TX_BUF_SIZE=0
CONFIG_K8200_PST_SEL_ROTATION_TIMEOUT=5000
CONFIG_K8200_PST_SEL_ROTATION_TIMEOUT=10000
# end of KRONE 8200 PST Split-Flap Configuration (Selection Mode)
#