summaryrefslogtreecommitdiff
path: root/smarttv-client/Javascript/Options.js
diff options
context:
space:
mode:
authorthlo <t.lohmar@gmx.de>2013-01-27 21:43:19 +0100
committerthlo <t.lohmar@gmx.de>2013-01-27 21:43:19 +0100
commitcb79f356b321eb4af6e24b2e0b7206a4c1d4e548 (patch)
treec4351beddd53183b8fa667fa8b4fd3777c251965 /smarttv-client/Javascript/Options.js
parente1766a1d404884247df96d4f631245bdc2d3d74a (diff)
downloadvdr-plugin-smarttvweb-cb79f356b321eb4af6e24b2e0b7206a4c1d4e548.tar.gz
vdr-plugin-smarttvweb-cb79f356b321eb4af6e24b2e0b7206a4c1d4e548.tar.bz2
Localtime shown in Main and Video Select Menu.
Free HDD space shown in Main and Video Select Menu. Title in progress overlay are single lined (no overflow). EPG data of Live channels are updated. Navigation (Page Up / down, Return, etc) more consistent.
Diffstat (limited to 'smarttv-client/Javascript/Options.js')
-rwxr-xr-xsmarttv-client/Javascript/Options.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/smarttv-client/Javascript/Options.js b/smarttv-client/Javascript/Options.js
index f59a58a..55eebf9 100755
--- a/smarttv-client/Javascript/Options.js
+++ b/smarttv-client/Javascript/Options.js
@@ -122,8 +122,8 @@ Options.deleteAll = function () {
Options.deleteChar = function() {
var txt = document.getElementById(Options.inputElm).value;
- alert("Options.cursorPos= " +Options.cursorPos);
- alert("txt.length= " +txt.length);
+// alert("Options.cursorPos= " +Options.cursorPos);
+// alert("txt.length= " +txt.length);
document.getElementById(Options.inputElm).value = txt.slice(0, (Options.cursorPos-1)) + txt.slice(Options.cursorPos);
Options.cursorPos = Options.cursorPos -1;
Options.setCursor(Options.cursorPos);