Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Debugging WEBUI: Fix the ExtJS hell, fixes #3347
  • Loading branch information
perexg committed Nov 26, 2015
1 parent 53f5856 commit a765bc6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/webui/static/app/tvhlog.js
Expand Up @@ -4,10 +4,12 @@ tvheadend.tvhlog = function(panel, index) {
var f = form.getForm();
var enable_syslog = f.findField('enable_syslog');
var debug_syslog = f.findField('syslog');
debug_syslog.setDisabled(!enable_syslog.getValue() || enable_syslog.disabled);
if (debug_syslog.cbEl)
debug_syslog.setDisabled(!enable_syslog.getValue() || enable_syslog.disabled);
var trace = f.findField('trace');
var tracesubs = f.findField('tracesubs');
tracesubs.setDisabled(!trace.getValue() || trace.disabled);
if (tracesubs.cbEl)
tracesubs.setDisabled(!trace.getValue() || trace.disabled);
}

tvheadend.idnode_simple(panel, {
Expand Down

0 comments on commit a765bc6

Please sign in to comment.