diff options
author | thlo <t.lohmar@gmx.de> | 2013-02-10 21:02:26 +0100 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-02-10 21:02:26 +0100 |
commit | 9bc23942e1bbac6672d3e00812235e483debd4cc (patch) | |
tree | d72e3f37c11453644be7b30532b23d60c2104353 /smarttv-client/Javascript/Data.js | |
parent | cf98c303d840eb02be5c11dd4a3505a58413dfa4 (diff) | |
download | vdr-plugin-smarttvweb-9bc23942e1bbac6672d3e00812235e483debd4cc.tar.gz vdr-plugin-smarttvweb-9bc23942e1bbac6672d3e00812235e483debd4cc.tar.bz2 |
Use time requests for playback while recording.
Use pdl for completed recordings.
Trickplay during recording.
Keep aspect ratio.
Navigation fixes.
Diffstat (limited to 'smarttv-client/Javascript/Data.js')
-rwxr-xr-x | smarttv-client/Javascript/Data.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smarttv-client/Javascript/Data.js b/smarttv-client/Javascript/Data.js index edc2a05..1a325f8 100755 --- a/smarttv-client/Javascript/Data.js +++ b/smarttv-client/Javascript/Data.js @@ -165,7 +165,7 @@ Item.prototype.findEpgUpdateTime = function (min, guid, level) { if ((this.childs[i].payload['start'] != 0) && ((this.childs[i].payload['start'] + this.childs[i].payload['dur']) < min)) {
min = this.childs[i].payload['start'] + this.childs[i].payload['dur'];
guid = this.childs[i].payload['guid'] ;
- Main.log(prefix + "New Min= " + min + " new id= " + guid + " title= " + this.childs[i].title);
+// Main.log(prefix + "New Min= " + min + " new id= " + guid + " title= " + this.childs[i].title);
// Main.logToServer(prefix + "New Min= " + min + " new id= " + guid + " title= " + this.childs[i].title);
}
}
|