Compare commits

...

4 Commits

Author SHA1 Message Date
prpr a1adcb7033 Add front panel software reboot reason 2023-06-04 16:13:16 +01:00
prpr 32a32d2ad3 Widen window 2023-06-03 01:56:31 +01:00
prpr 7bac247e48 Remove white space before testing length 2023-05-30 00:40:08 +01:00
prpr bafa8fcfd3 Stop epg jumping when page load has finished 2023-05-28 20:06:04 +01:00
3 changed files with 8 additions and 2 deletions

View File

@ -56,7 +56,7 @@ $('#pkgtabs').tabs({
var $dialog = $('#dialogue').dialog({
title: "Package Management Results",
modal: false, autoOpen: false,
height: 500, width: 700,
height: 500, width: 800,
show: 'scale', hide: 'fade',
draggable: true, resizable: true,
buttons: { "Close":
@ -139,7 +139,7 @@ function execopkg(arg, pkg)
error: function(_, _, e) {
if (window.console)
console.log("ajax error");
if (e.length)
if (e.trim().length)
alert(e);
}
});

View File

@ -198,3 +198,8 @@ button#later
display: none;
}
div div#spinner {
position: absolute;
top: 120px;
left: 82px;
}

View File

@ -73,6 +73,7 @@ proc {system lastbootreason} {{descr 1}} {{lbr -1}} {
2 { return "Remote control handset" }
3 { return "Scheduled event" }
4 { return "Power cycle" }
5 { return "Front panel reboot" }
}
return "Unknown ($lbr)"
}