Compare commits

...

2 Commits

Author SHA1 Message Date
prpr 80464c8342 Update to 1.5.0-7 2022-10-16 15:28:40 +01:00
prpr a587278586 Delay refresh on UI interaction 2022-10-16 15:27:33 +01:00
2 changed files with 13 additions and 2 deletions

View File

@ -1,7 +1,7 @@
Package: webif
Priority: optional
Section: web
Version: 1.5.0-6
Version: 1.5.0-7
Architecture: mipsel
Maintainer: af123@hpkg.tv
Depends: tcpfix,webif-channelicons(>=1.1.27),lighttpd(>=1.4.39-1),jim(>=0.81-3),jim-cgi(>=0.7-2),service-control(>=2.3),busybox(>=1.20.2-1),lsof(>=4.87),epg(>=1.2.8),hmt(>=2.0.11),ssmtp,cron-daemon(>=1.18.3-3),at(>=3.1.18),anacron,trm(>=1.1),openssl-command,nicesplice,id3v2,file,rsvsync(>=1.1.13),webif-charts(>=1.2-1),stripts(>=1.4.2),tmenu(>=1.21-2),ffmpeg(>=2.8),id3v2,multienv(>=1.6),tcpping(>=1.1),e2fsprogs,wireless-tools(>=29-1),dbupdate,recmon(>=2.0.7),hwctl,nugget(>=0.98),sqlite3(>=3.15.1),jim-xconv,zip(>=3.0-1),wget

View File

@ -103,6 +103,8 @@ function load()
$(function() {
var loader=0;
$('table')
.tablesorter({
sortList: [[0,1]],
@ -198,7 +200,16 @@ $('#queuetab').on('click', 'a.file', function(e) {
encodeURIComponent('{root}/' + dirname(file));
});
setInterval(load, 60000);
function set_loader() {
if (loader != 0)
clearInterval(loader);
loader=setInterval(load, 60000);
}
$('#queuetab').on('change', 'input[type=checkbox]', set_loader);
set_loader();
});