summaryrefslogtreecommitdiff
path: root/smarttv-client/Javascript/Display.js
diff options
context:
space:
mode:
authorthlo <smarttv640@gmail.com>2013-09-29 16:09:19 +0200
committerthlo <t.lohmar@gmx.de>2013-09-29 16:09:19 +0200
commit4148888336af42a0ddb7a2e1e9dbc70703a2ba71 (patch)
tree75e508fdd6d263b9b247e6d83346d131439195db /smarttv-client/Javascript/Display.js
parentc1d18541100f07b5ec2a0baf894ae9d870866c5f (diff)
downloadvdr-plugin-smarttvweb-4148888336af42a0ddb7a2e1e9dbc70703a2ba71.tar.gz
vdr-plugin-smarttvweb-4148888336af42a0ddb7a2e1e9dbc70703a2ba71.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/Display.js')
-rwxr-xr-xsmarttv-client/Javascript/Display.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/smarttv-client/Javascript/Display.js b/smarttv-client/Javascript/Display.js
index 3d629f7..660a007 100755
--- a/smarttv-client/Javascript/Display.js
+++ b/smarttv-client/Javascript/Display.js
@@ -643,7 +643,9 @@ Display.getDisplayTitle = function(item) {
Display.resetAtStop = function () {
// this function should reset all overlay features to plan recordings.
// Hide Recording bar
- Notify.notifyOlHandler.cancel();
+
+// TODO: Debugging purpose
+// Notify.notifyOlHandler.cancel();
Player.resetAtStop(); // Needs to be done at beginning to reset parameters
Display.resetStartStop();
@@ -909,6 +911,7 @@ Display.showPopup = function(text) {
// var oldHTML = document.getElementById("popup").innerHTML;
// Display.putInnerHTML(document.getElementById("popup"), oldHTML + "<br>" + text);
+ Main.log("Display.showPopup text= " + text);
if (text == "")
this.popupOlHandler.show();
@@ -920,6 +923,8 @@ Display.showPopup = function(text) {
};
Display.scrollPopup = function () {
+ Main.log("Display.scrollPopup" );
+
var t = $('#popup').children().last().position().top;
var h = $('#popup').children().last().outerHeight();
if ((t + h) > $("#popup").height()) {