From 4148888336af42a0ddb7a2e1e9dbc70703a2ba71 Mon Sep 17 00:00:00 2001 From: thlo Date: Sun, 29 Sep 2013 16:09:19 +0200 Subject: * Fixes in Comm handling. * Fixes in Timer menu. * Fixes in Image Viewer. * Widget Code Improvements (HTTP transaction handlings) --- smarttv-client/Javascript/Display.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'smarttv-client/Javascript/Display.js') 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 + "
" + 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()) { -- cgit v1.2.3