diff options
author | thlo <t.lohmar@gmx.de> | 2013-09-01 16:53:29 +0200 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-09-01 16:53:29 +0200 |
commit | d9ccb92d336bb36a90b3ab9ace2d221644442d43 (patch) | |
tree | 337b7ff9a78c432d23627af5a1e6e7d47d7cff1c /smarttv-client/Javascript/Display.js | |
parent | 68de2c4bdab84ae56ddad0db48c48b40f0ca536c (diff) | |
download | vdr-plugin-smarttvweb-d9ccb92d336bb36a90b3ab9ace2d221644442d43.tar.gz vdr-plugin-smarttvweb-d9ccb92d336bb36a90b3ab9ace2d221644442d43.tar.bz2 |
Timer menu entry, which gives an overview of the timers and allows
deletion of timers.
widget.conf configurable InfoOverlay timeout (new widget.conf entry
<infoTimeout>)
YouTube entry becomes optional. Add <youtubemenu>true</youtubemenu> to
your widget.conf
Improved server error feedback through widget GUI
Bug Fixes.
Diffstat (limited to 'smarttv-client/Javascript/Display.js')
-rwxr-xr-x | smarttv-client/Javascript/Display.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/smarttv-client/Javascript/Display.js b/smarttv-client/Javascript/Display.js index a8eb758..c0b1093 100755 --- a/smarttv-client/Javascript/Display.js +++ b/smarttv-client/Javascript/Display.js @@ -46,6 +46,7 @@ Display.init = function() this.volOlHandler.init(Display.handlerShowVolume, Display.handlerHideVolume);
this.popupOlHandler.init(Display.handlerShowPopup, Display.handlerHidePopup);
this.infoOlHandler.init(Display.handlerShowInfo, Display.handlerHideInfo);
+ this.infoOlHandler.olDelay = Config.infoTimeout;
if (!this.statusDiv) {
success = false;
@@ -173,15 +174,16 @@ Display.selectItem = function (item) { 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%)";
item.style.borderRadius= "3px";
item.style["-webkit-box-shadow"] = "2px 2px 1px 2px rgba(0,0,0, 0.5)";
- // item.style.backgroundColor = "white";
+
};
Display.unselectItem = function (item) {
item.style.color = "white";
- item.style.backgroundColor = "transparent";
+// item.style.backgroundColor = "transparent";
item.style.background = "transparent";
item.style.borderRadius= "0px";
item.style["-webkit-box-shadow"] = "";
+
};
Display.jqSelectItem = function (item) {
|