summaryrefslogtreecommitdiff
path: root/smarttv-client/Javascript/Player.js
diff options
context:
space:
mode:
authorthlo <t.lohmar@gmx.de>2013-01-07 20:41:02 +0100
committerthlo <t.lohmar@gmx.de>2013-01-07 20:41:02 +0100
commit7034d92cbb1bf7b4c219b6ff4f744349211781dc (patch)
treed87d5151cecd205976d23d0e13a61fc7cb8a8870 /smarttv-client/Javascript/Player.js
parent21f592bf3c2f09f41cbc3c9c6a34ffe5d70df834 (diff)
downloadvdr-plugin-smarttvweb-7034d92cbb1bf7b4c219b6ff4f744349211781dc.tar.gz
vdr-plugin-smarttvweb-7034d92cbb1bf7b4c219b6ff4f744349211781dc.tar.bz2
Fixes (use liveChannels from Widget.conf, no error after start video,
etc).
Diffstat (limited to 'smarttv-client/Javascript/Player.js')
-rwxr-xr-xsmarttv-client/Javascript/Player.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/smarttv-client/Javascript/Player.js b/smarttv-client/Javascript/Player.js
index 72c6d30..c8ab787 100755
--- a/smarttv-client/Javascript/Player.js
+++ b/smarttv-client/Javascript/Player.js
@@ -178,7 +178,7 @@ Player.playVideo = function() {
this.plugin.Play( this.url );
Audio.plugin.SetSystemMute(false);
- pluginObj.setOffScreenSaver();
+ pluginObj.setOffScreenSaver();
this.pluginBD.DisplayVFD_Show(0100); // Play
}
};
@@ -192,7 +192,7 @@ Player.pauseVideo = function() {
var res = this.plugin.Pause();
if (res == false)
Display.showPopup("pause ret= " + ((res == true) ? "True" : "False"));
- pluginAPI.setOnScreenSaver();
+ pluginObj.setOnScreenSaver();
this.pluginBD.DisplayVFD_Show(0102); // Pause
};
@@ -207,7 +207,7 @@ Player.stopVideo = function() {
if (this.stopCallback) {
this.stopCallback();
}
- pluginAPI.setOnScreenSaver();
+ pluginObj.setOnScreenSaver();
this.pluginBD.DisplayVFD_Show(0101); // Stop
}
else {
@@ -223,7 +223,7 @@ Player.resumeVideo = function() {
var res = this.plugin.Resume();
if (res == false)
Display.showPopup("resume ret= " + ((res == true) ? "True" : "False"));
- pluginObj.setOffScreenSaver();
+ pluginObj.setOffScreenSaver();
this.pluginBD.DisplayVFD_Show(0100); // Play
};