diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-06-12 22:08:13 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-06-12 22:08:13 +0200 |
commit | 7a781d9cd8ab783dd7a5c72f154b972a9ea9aa98 (patch) | |
tree | 4ae4b446189b917d969dd853e8e6f62440c7d673 | |
parent | a0fd70ad01967114684282df7c35e64327002b44 (diff) |
luci-mod-network: fix vlan filter matrix overflow after redraw
Ensure that the overflow styles are reapplied after a redraw. This also
simplifies the code as a side-effect.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
-rw-r--r-- | modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js b/modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js index b134390a42..67aecf262c 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js @@ -825,14 +825,6 @@ return baseclass.extend({ o = this.addOption(s, 'bridgevlan', form.SectionValue, 'bridge-vlan', form.TableSection, 'bridge-vlan'); o.depends('type', 'bridge'); - o.renderWidget = function(/* ... */) { - return form.SectionValue.prototype.renderWidget.apply(this, arguments).then(L.bind(function(node) { - node.style.overflowX = 'auto'; - node.style.overflowY = 'hidden'; - - return node; - }, this)); - }; ss = o.subsection; ss.addremove = true; @@ -855,6 +847,8 @@ return baseclass.extend({ ss.render = function(/* ... */) { return form.TableSection.prototype.render.apply(this, arguments).then(L.bind(function(node) { + node.style.overflow = 'auto hidden'; + if (this.node) this.node.parentNode.replaceChild(node, this.node); |