summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--css/theme.css3
-rw-r--r--js/istreamdev.js4
2 files changed, 4 insertions, 3 deletions
diff --git a/css/theme.css b/css/theme.css
index 7fe4575..a0c2c74 100644
--- a/css/theme.css
+++ b/css/theme.css
@@ -433,7 +433,8 @@ div#jqt.landscape .toolbar > h1 {
#jqt ul.edgetoedge li {
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#4c4d4e), to(#404142));
font-size: 14px;
- margin-bottom: -3px;
+ margin-bottom: -1px;
+ border-bottom: 2px solid #333333;
}
#jqt ul.edgetoedge li.sep {
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0,0,0,0)), to(rgba(0,0,0,.5)));
diff --git a/js/istreamdev.js b/js/istreamdev.js
index d75d39b..f242bd8 100644
--- a/js/istreamdev.js
+++ b/js/istreamdev.js
@@ -1002,7 +1002,7 @@ get_epg("all","now","0","2");
$('#epglist #ul_epglist a').tap(function(event) {
event.preventDefault();
json_start(this);
-channum = $(this).find('span[rel="channum"]').text();
+channum = $(this).attr("rel");
epgtime = $(this).find('span[class="epgtime"]').text();
startingtime = epgtime.substring(0,2) + '' + epgtime.substring(3);
day = $('#epglist div[rel="dataholder"] span[rel="day"]').text();
@@ -1151,7 +1151,7 @@ function parse_epg(data,selectedvalue,type,day){
{
togglestatus = '';
}
- $('#epglist #ul_epglist').append('<li rel="' + togglestatus + '"><a href="#"><span class="epgtime">' + epg.time + '</span><span class="epgname">' + epg.title + '</span><span style="visibility:hidden" rel="channum">' + channel.number + '</span></a></li>');
+ $('#epglist #ul_epglist').append('<li rel="' + togglestatus + '"><a href="#" rel="' + channel.number + '"><span class="epgtime">' + epg.time + '</span><span class="epgname">' + epg.title + '</span></a></li>');
k++;
});