diff options
author | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2009-08-28 00:33:25 +0200 |
---|---|---|
committer | Dieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de> | 2009-08-28 00:33:25 +0200 |
commit | 5cd60f99e54d0d2a0f0abf0d1d3170bea74ecdc2 (patch) | |
tree | 88079d5d055d5a4fa029ad90b6b29a3b81f40476 | |
parent | 854fa820e345ed890e4a7a9a32b14add68fc642c (diff) | |
download | vdr-plugin-live-5cd60f99e54d0d2a0f0abf0d1d3170bea74ecdc2.tar.gz vdr-plugin-live-5cd60f99e54d0d2a0f0abf0d1d3170bea74ecdc2.tar.bz2 |
VLC 1.0 does not support the (debug) log object any longer: removed code referencing it. This fixes the bug, that the buttons in the VLC popup window did not work any longer.cvs-commit-363
-rw-r--r-- | live/js/live/vlc.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/live/js/live/vlc.js b/live/js/live/vlc.js index 927f3a4..3b8aa23 100644 --- a/live/js/live/vlc.js +++ b/live/js/live/vlc.js @@ -67,10 +67,6 @@ var VLC = new Class({ playerSetup: function(){ this.vlc = $(this.id); this.newVlcApi = (this.vlc.VersionInfo != null); - if (this.newVlcApi) { - // disable logging. - this.vlc.log.verbosity = -1; - } // add here new actions these class might support: var actions = { play: { check: this.isPlaying, toggle: this.togglePlay }, |