summaryrefslogtreecommitdiff
path: root/live/js
diff options
context:
space:
mode:
authorDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-12-22 18:15:46 +0000
committerDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-12-22 18:15:46 +0000
commit600227043a817c2c911d021ba78b9739b4e92088 (patch)
tree4c35e7b3fce0a11d1868890675cd9d3c2c404f3a /live/js
parent34a8da7294f445448dfdf9597e8ba322d9dc08e6 (diff)
downloadvdr-plugin-live-600227043a817c2c911d021ba78b9739b4e92088.tar.gz
vdr-plugin-live-600227043a817c2c911d021ba78b9739b4e92088.tar.bz2
- Almost full featured javascript controlling interface for the vlc window.
Diffstat (limited to 'live/js')
-rw-r--r--live/js/live/browserwin.js6
-rw-r--r--live/js/live/pageenhance.js4
2 files changed, 5 insertions, 5 deletions
diff --git a/live/js/live/browserwin.js b/live/js/live/browserwin.js
index e69e0f3..79058b7 100644
--- a/live/js/live/browserwin.js
+++ b/live/js/live/browserwin.js
@@ -20,11 +20,11 @@ Note:
*/
var BrowserWin = new Class({
options: {
- size: { width: 300, height: 200 },
+ size: { width: 720, height: 640 },
toolbar: false,
location: false,
directories: false,
- status: false,
+ statusbar: false,
menubar: false,
scrollbar: false,
resizable: true,
@@ -44,7 +44,7 @@ var BrowserWin = new Class({
winOpts += ",toolbar=" + this.options.toolbar;
winOpts += ",location=" + this.options.toolbar;
winOpts += ",directories=" + this.options.directories;
- winOpts += ",status=" + this.options.status;
+ winOpts += ",statusbar=" + this.options.statusbar;
winOpts += ",menubar=" + this.options.menubar;
winOpts += ",scrollbars=" + this.options.scrollbars;
winOpts += ",resizable=" + this.options.resizable;
diff --git a/live/js/live/pageenhance.js b/live/js/live/pageenhance.js
index 67437d5..d98b374 100644
--- a/live/js/live/pageenhance.js
+++ b/live/js/live/pageenhance.js
@@ -4,7 +4,7 @@
* PageEnhance class.
*
* This class applies several functions to the page based on
- * selectors. This class is quite project dependent and not a general
+ * selectors. This class is project dependent and not a general
* purpose class.
*/
@@ -14,7 +14,7 @@ var PageEnhance = new Class({
actionLinkSelector: 'a[href^="vdr_request/"]',
vlcLinkSelector: 'a[href^="vlc.html?channel"]',
vlcWinOptions: {
- size: { width: 740, height: 640 }
+ size: { width: 720, height: 640 }
},
hintTipSelector: '*[title]',
hintClassName: 'hint',