hide buttons until dialogue has loaded

git-svn-id: file:///root/webif/svn/pkg/webif/trunk@3169 2a923420-c742-0410-a762-8d5b09965624
This commit is contained in:
hummypkg 2016-08-14 12:33:53 +00:00
parent 0bd1f610d1
commit 950051032e
2 changed files with 77 additions and 71 deletions

View File

@ -1,10 +1,10 @@
Package: webif
Priority: optional
Section: web
Version: 1.3.1-2
Version: 1.3.1-3
Architecture: mipsel
Maintainer: af123@hpkg.tv
Depends: tcpfix,webif-channelicons(>=1.1.24),lighttpd(>=1.4.39-1),jim(>=0.76-2),jim-oo,jim-sqlite3(>=0.76),jim-cgi(>=0.7-1),jim-binary(>=0.76),service-control(>=2.1),busybox(>=1.20.2-1),lsof(>=4.87),epg(>=1.2.3),hmt(>=2.0.10),ssmtp,cron-daemon(>=1.18.3-3),at(>=3.1.18),anacron,trm(>=1.1),openssl-command,nicesplice,id3v2,file,rsvsync(>=1.1.2),webif-charts(>=1.2-1),stripts(>=1.2.5-3),tmenu(>=1.08),ffmpeg,id3v2,multienv(>=1.6),tcpping(>=1.1),e2fsprogs,wireless-tools(>=29-1),dbupdate,recmon(>=2.0.7),hwctl
Depends: tcpfix,webif-channelicons(>=1.1.24),lighttpd(>=1.4.39-1),jim(>=0.76-2),jim-oo,jim-sqlite3(>=0.76),jim-cgi(>=0.7-1),jim-binary(>=0.76),service-control(>=2.1),busybox(>=1.20.2-1),lsof(>=4.87),epg(>=1.2.3),hmt(>=2.0.10),ssmtp,cron-daemon(>=1.18.3-3),at(>=3.1.18),anacron,trm(>=1.1),openssl-command,nicesplice,id3v2,file,rsvsync(>=1.1.3),webif-charts(>=1.2-1),stripts(>=1.2.5-3),tmenu(>=1.08),ffmpeg,id3v2,multienv(>=1.6),tcpping(>=1.1),e2fsprogs,wireless-tools(>=29-1),dbupdate,recmon(>=2.0.7),hwctl
Suggests:
Description: An evolving web interface for the Humax.
Tags: http://hummy.tv/forum/threads/7116/

View File

@ -1,4 +1,5 @@
$(function() {
function doschedule(type)
{
$('#epginfo_extra').load('/cgi-bin/epg/schedule.jim?' +
@ -43,14 +44,17 @@ $(function() {
e.preventDefault();
var sch = o.attr('sch');
var rec = o.attr('rec');
$dialog.dialog("option", "buttons", $buttons1);
if (sch != 0)
$dialog.dialog("option", "buttons", $buttons1);
$buttons = $buttons1;
else if (rec == 2)
$dialog.dialog("option", "buttons", $buttons3);
$buttons = $buttons3;
else if (rec == 1)
$dialog.dialog("option", "buttons", $buttons2);
$buttons = $buttons2;
else
$dialog.dialog("option", "buttons", $buttons1);
$buttons = $buttons1;
var url = '/cgi-bin/epg/info.jim?service=' +
o.attr('xs') + '&event=' +
o.attr('xe') + '&bare=1';
@ -58,6 +62,7 @@ $(function() {
.html('<img src=/img/loading.gif> Loading details...' +
' Please wait...')
.load(url, function() {
$dialog.dialog("option", "buttons", $buttons);
$('#epgpopup_dialogue a.event').click(function(e) {
epgpopup(e, $(this));
});
@ -71,4 +76,5 @@ $(function() {
e.preventDefault();
epgpopup(e, $(this))
});
});