diff options
author | thlo <smarttv640@gmail.com> | 2013-09-03 18:41:33 +0200 |
---|---|---|
committer | thlo <smarttv640@gmail.com> | 2013-09-03 18:41:33 +0200 |
commit | ab15172eb00855899da98c9b2b9b028a4d306789 (patch) | |
tree | 2c1adcdcdf8239cb0634705f10df04c396a32780 /smarttv-client/Javascript/Display.js | |
parent | d9ccb92d336bb36a90b3ab9ace2d221644442d43 (diff) | |
download | vdr-plugin-smarttvweb-ab15172eb00855899da98c9b2b9b028a4d306789.tar.gz vdr-plugin-smarttvweb-ab15172eb00855899da98c9b2b9b028a4d306789.tar.bz2 |
* Image Viewer for Media Folder (press enter on an Image)
* Timer GUI improvements
* 3D interaction Improvements.
Diffstat (limited to 'smarttv-client/Javascript/Display.js')
-rwxr-xr-x | smarttv-client/Javascript/Display.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/smarttv-client/Javascript/Display.js b/smarttv-client/Javascript/Display.js index c0b1093..62e3412 100755 --- a/smarttv-client/Javascript/Display.js +++ b/smarttv-client/Javascript/Display.js @@ -168,7 +168,7 @@ Display.getNumString =function(num, fmt) { };
Display.selectItem = function (item) {
-
+// item.setAttribute("class", "style_menuItemSelected");
item.style.color = "black";
item.style.background = "white";
item.style.background = "-webkit-linear-gradient(top, rgba(246,248,249,1) 0%,rgba(229,235,238,1) 50%,rgba(215,222,227,1) 51%,rgba(245,247,249,1) 100%)";
@@ -178,6 +178,7 @@ Display.selectItem = function (item) { };
Display.unselectItem = function (item) {
+// item.setAttribute("class", "style_menuItem");
item.style.color = "white";
// item.style.backgroundColor = "transparent";
item.style.background = "transparent";
@@ -1035,7 +1036,7 @@ OverlayHandler.prototype.checkHideCallback = function () { var now = Display.GetEpochTime();
if (now >= this.hideTime) {
- this.olDelay = 3000;
+// this.olDelay = 3000;
if (this.hideCallback) {
this.hideCallback();
}
|