diff options
author | thlo <t.lohmar@gmx.de> | 2013-09-17 19:40:19 +0200 |
---|---|---|
committer | thlo <t.lohmar@gmx.de> | 2013-09-17 19:40:19 +0200 |
commit | c1a548c89f8f843b76a2934bd0b89ac13ce22fcb (patch) | |
tree | db95063145452a54e885b5213fed9eeb015ad7ff /smarttv-client/Javascript/Timers.js | |
parent | 3c8b0c290160d11f75b01047e672ed3dbbbf12b8 (diff) | |
download | vdr-plugin-smarttvweb-c1a548c89f8f843b76a2934bd0b89ac13ce22fcb.tar.gz vdr-plugin-smarttvweb-c1a548c89f8f843b76a2934bd0b89ac13ce22fcb.tar.bz2 |
* Fixed that selected text is black (instead of white)
* Corrections in the ImageViewer module
* Code-Cleanup
Diffstat (limited to 'smarttv-client/Javascript/Timers.js')
-rw-r--r-- | smarttv-client/Javascript/Timers.js | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/smarttv-client/Javascript/Timers.js b/smarttv-client/Javascript/Timers.js index c00e9e7..8f38994 100644 --- a/smarttv-client/Javascript/Timers.js +++ b/smarttv-client/Javascript/Timers.js @@ -1,6 +1,6 @@ var Timers = {
timerList : [],
- scrollDur : 300,
+ scrollDur : 100,
scrollFlip : 100,
btnMode : 0
// 0 nothing
@@ -175,16 +175,16 @@ Timers.createEntry= function (i, w) { // row.append($("<div>", {class : ((Timers.timerList[i].isrec ==true) ? "style_timerRec" : ""), style : "display: inline-block;"}));
- row.append($("<div>", {class : ((Timers.timerList[i].isrec ==true) ? "style_timerRec" : ((Timers.timerList[i].flags & 1) != 0) ? "style_timerAct" : "style_timerNone"), style : "display: inline-block;"}));
+ row.append($("<div>", {class : ((Timers.timerList[i].isrec ==true) ? "style_timerRec" : ((Timers.timerList[i].flags & 1) != 0) ? "style_timerAct" : "style_timerNone"), style : "display: inline-block; color : inherit;"}));
if ( Timers.timerList[i].isSingleEvent == true) {
}
else {
}
- row.append($("<div>", {text : Timers.timerList[i].channelname, style : "padding-left:5px;width:12%; display: inline-block;", class : "style_overflow"}));
- row.append($("<div>", {text : Timers.timerList[i].start, style : "padding-left:5px; width:9%; display: inline-block;", class : "style_overflow"}));
- row.append($("<div>", {text : Timers.timerList[i].stop, style : "padding-left:5px; width:9%; display: inline-block;", class : "style_overflow"}));
- row.append($("<div>", {text : Timers.timerList[i].title, style : "padding-left:5px; width:68%;display: inline-block;", class : "style_overflow"}));
+ row.append($("<div>", {text : Timers.timerList[i].channelname, style : "padding-left:5px;width:12%; display: inline-block; color : inherit; ", class : "style_overflow"}));
+ row.append($("<div>", {text : Timers.timerList[i].start, style : "padding-left:5px; width:9%; display: inline-block; color : inherit; ", class : "style_overflow"}));
+ row.append($("<div>", {text : Timers.timerList[i].stop, style : "padding-left:5px; width:9%; display: inline-block; color : inherit; ", class : "style_overflow"}));
+ row.append($("<div>", {text : Timers.timerList[i].title, style : "padding-left:5px; width:68%;display: inline-block; color : inherit; ", class : "style_overflow"}));
return row;
};
|