summaryrefslogtreecommitdiff
path: root/smarttv-client/Javascript/Main.js
diff options
context:
space:
mode:
authorthlo <t.lohmar@gmx.de>2013-09-29 16:09:19 +0200
committerthlo <t.lohmar@gmx.de>2013-09-29 16:09:19 +0200
commitf294d3cb3aa36e2a74e4e4c8542c48da78f54861 (patch)
tree75e508fdd6d263b9b247e6d83346d131439195db /smarttv-client/Javascript/Main.js
parentc001a1556b1d159eff37591f35eb8968676e52ca (diff)
downloadvdr-plugin-smarttvweb-f294d3cb3aa36e2a74e4e4c8542c48da78f54861.tar.gz
vdr-plugin-smarttvweb-f294d3cb3aa36e2a74e4e4c8542c48da78f54861.tar.bz2
* Fixes in Comm handling.
* Fixes in Timer menu. * Fixes in Image Viewer. * Widget Code Improvements (HTTP transaction handlings)
Diffstat (limited to 'smarttv-client/Javascript/Main.js')
-rwxr-xr-xsmarttv-client/Javascript/Main.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/smarttv-client/Javascript/Main.js b/smarttv-client/Javascript/Main.js
index d65ee70..48b4e44 100755
--- a/smarttv-client/Javascript/Main.js
+++ b/smarttv-client/Javascript/Main.js
@@ -283,6 +283,7 @@ Main.isTvSet = function () {
Main.changeState = function (state) {
Main.log("change state: OldState= " + this.state + " NewState= " + state);
+ Main.logToServer("change state: OldState= " + this.state + " NewState= " + state);
var old_state = this.state;
@@ -1069,10 +1070,10 @@ cLivePlayStateKeyHndl.prototype.handleKeyDown = function (keyCode) {
case 73:
Main.log("KEY_REC with guid= Data.getCurrentItem().childs[Main.selectedVideo].payload.guid");
- var timer_req = new addTimer(Data.getCurrentItem().childs[Main.selectedVideo].payload.guid);
+// var timer_req = new addTimer(Data.getCurrentItem().childs[Main.selectedVideo].payload.guid);
+ Server.addTimer(Data.getCurrentItem().childs[Main.selectedVideo].payload.guid);
// use the guid and request the epg.
// use the event id then issue the rec command
-// Data.getCurrentItem().childs[Main.selectedVideo].payload.guid
case tvKey.KEY_PAUSE:
Main.log("REC / PAUSE");