diff options
author | thlo <smarttv640@gmail.com> | 2013-09-29 16:09:19 +0200 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-09-29 16:09:19 +0200 |
commit | 4148888336af42a0ddb7a2e1e9dbc70703a2ba71 (patch) | |
tree | 75e508fdd6d263b9b247e6d83346d131439195db /smarttv-client/Javascript/Display.js | |
parent | c1d18541100f07b5ec2a0baf894ae9d870866c5f (diff) | |
download | vdr-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-x | smarttv-client/Javascript/Display.js | 7 |
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()) {
|