diff options
author | thlo <t.lohmar@gmx.de> | 2012-12-27 23:10:17 +0100 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2012-12-27 23:10:17 +0100 |
commit | 00ebc89c5ed4abb7234a2ac40604839fb6399307 (patch) | |
tree | 6283c472c50af45860afa3fb06b19ab428b87cbb /smarttv-client/Javascript/Player.js | |
parent | 19e18001a906b75fd7383291307e72eca14d70b2 (diff) | |
download | vdr-plugin-smarttvweb-00ebc89c5ed4abb7234a2ac40604839fb6399307.tar.gz vdr-plugin-smarttvweb-00ebc89c5ed4abb7234a2ac40604839fb6399307.tar.bz2 |
Correction of TotalPlaytime string.
Diffstat (limited to 'smarttv-client/Javascript/Player.js')
-rwxr-xr-x | smarttv-client/Javascript/Player.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/smarttv-client/Javascript/Player.js b/smarttv-client/Javascript/Player.js index 716f36c..404cfda 100755 --- a/smarttv-client/Javascript/Player.js +++ b/smarttv-client/Javascript/Player.js @@ -304,8 +304,9 @@ Player.OnStreamInfoReady = function() { if ((Player.isLive == false) && (Player.isRecording == false)) {
Player.totalTime = Player.plugin.GetDuration();
}
- Player.curPlayTimeStr = Display.durationString(Player.totalTime / 1000.0);
-
+// Player.curPlayTimeStr = Display.durationString(Player.totalTime / 1000.0);
+ Player.totalTimeStr =Display.durationString(Player.totalTime / 1000.0);
+
/* var height = Player.plugin.GetVideoHeight();
var width = Player.GetVideoWidth();
Display.showPopup("Resolution= " + height + " x " +width);
|