From 1b063c7600dab56856a7f81f2de56ffbfa829a49 Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Mon, 8 Sep 2014 20:38:23 +0200 Subject: [PATCH] WEBUI JS: Fix the idnode_tree (parameters missing) --- src/webui/static/app/idnode.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/webui/static/app/idnode.js b/src/webui/static/app/idnode.js index 13716f97..8e9b0cf0 100644 --- a/src/webui/static/app/idnode.js +++ b/src/webui/static/app/idnode.js @@ -1702,15 +1702,17 @@ tvheadend.idnode_tree = function(panel, conf) mpanel.remove(current); current = null; } - if (!n.isRoot) - current = mpanel.add(new tvheadend.idnode_editor(n.attributes, { + if (!n.isRoot) { + current = new tvheadend.idnode_editor(n.attributes, { title: 'Parameters', - nowidth: true, + width: 550, noautoWidth: true, fixedHeight: true, help: conf.help || null - })); - mpanel.doLayout(); + }); + mpanel.add(current); + mpanel.doLayout(); + } } } });