diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-26 18:12:12 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-26 18:12:12 +0100 |
commit | 61427cfc625c71c535c381c9a315a4a2d0e3785c (patch) | |
tree | 1316f284ac9f3634b0c086236d4eee09d8d863aa /js | |
parent | 28271e3c4fc3096c9430deda06567dfa1c84a4cc (diff) | |
parent | 62f283d57a5938650099ede5a3b4aecf2489ee2d (diff) | |
download | istreamdev-61427cfc625c71c535c381c9a315a4a2d0e3785c.tar.gz istreamdev-61427cfc625c71c535c381c9a315a4a2d0e3785c.tar.bz2 |
Merge branch 'jquery' of projects.vdr-developer.org:istreamdev into jquery
* 'jquery' of projects.vdr-developer.org:istreamdev:
fix epg
Diffstat (limited to 'js')
-rw-r--r-- | js/istreamdev.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/istreamdev.js b/js/istreamdev.js index 80d7639..73eec7b 100644 --- a/js/istreamdev.js +++ b/js/istreamdev.js @@ -1004,7 +1004,7 @@ event.preventDefault(); json_start(this);
channum = $(this).attr("rel");
epgtime = $(this).find('span[class="epgtime"]').text();
-startingtime = epgtime.substring(0,2) + '' + epgtime.substring(3);
+startingtime = epgtime.substring(0,2) + '' + epgtime.substring(3,5);
day = $('#epglist div[rel="dataholder"] span[rel="day"]').text();
get_epgdetails(channum,startingtime,day);
});
|