summaryrefslogtreecommitdiffhomepage
path: root/modules
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2019-08-11 20:54:49 +0200
committerJo-Philipp Wich <jo@mein.io>2019-08-14 22:58:15 +0200
commitfb18c278a4eb5143b377e1ff148d3ed2e1f84c19 (patch)
treef8dc1811bfe51ba4eb507c24b8dfe475aecdfa32 /modules
parent43a8c12f04f949563b2ac0be2c46a4033a509596 (diff)
luci-base: form.js: CBISectionValue: properly forward dependency checks
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules')
-rw-r--r--modules/luci-base/htdocs/luci-static/resources/form.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/form.js b/modules/luci-base/htdocs/luci-static/resources/form.js
index b8d97c751..4cdef2e69 100644
--- a/modules/luci-base/htdocs/luci-static/resources/form.js
+++ b/modules/luci-base/htdocs/luci-static/resources/form.js
@@ -1677,7 +1677,7 @@ var CBISectionValue = CBIValue.extend({
checkDepends: function(section_id) {
this.subsection.checkDepends();
- return this.super('checkDepends');
+ return CBIValue.prototype.checkDepends.apply(this, [ section_id ]);
},
write: function() {},