diff options
author | thlo <smarttv640@gmail.com> | 2014-06-09 12:56:48 +0200 |
---|---|---|
committer | thlo <smarttv640@gmail.com> | 2014-06-09 12:56:48 +0200 |
commit | 478222ca3bee5e20432dcc052a74e955d3fa255a (patch) | |
tree | 618002e1c41fa1143eaf0b669723a32f016d2041 /smarttv-client/Javascript/Timers.js | |
parent | 1f4c5de1370cacfb1b514d833860c372c3ff3767 (diff) | |
download | vdr-plugin-smarttvweb-Wv1.00.tar.gz vdr-plugin-smarttvweb-Wv1.00.tar.bz2 |
* Commands Menu Entry (when enabled in plugin)
* Fix of sorting bug (blue key in recordings)
* Improved buffering tuning for Live
* Fixes with respect to using HLS for Recordings
* Touch Remote Control support
* New 21:9 crop (picture size key)
* Making additional notifications (such as Recording has finished)
optional
* Show Language Code for Audio Track Select
* Bug Fixes
Diffstat (limited to 'smarttv-client/Javascript/Timers.js')
-rw-r--r-- | smarttv-client/Javascript/Timers.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smarttv-client/Javascript/Timers.js b/smarttv-client/Javascript/Timers.js index a90eedf..742f5f0 100644 --- a/smarttv-client/Javascript/Timers.js +++ b/smarttv-client/Javascript/Timers.js @@ -148,7 +148,7 @@ Timers.createMenu= function () { };
Timers.getPrintDate = function (day) {
- var d = new Date (day * 1000);
+ var d = new MyDate (day * 1000);
return d.getDate() + "." + (d.getMonth() +1) + "." + d.getFullYear();
};
|