summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2009-08-28 00:33:25 +0200
committerDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2009-08-28 00:33:25 +0200
commit5cd60f99e54d0d2a0f0abf0d1d3170bea74ecdc2 (patch)
tree88079d5d055d5a4fa029ad90b6b29a3b81f40476
parent854fa820e345ed890e4a7a9a32b14add68fc642c (diff)
downloadvdr-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.js4
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 },