summaryrefslogtreecommitdiff
path: root/luci2/htdocs
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2014-02-01 18:05:20 +0000
committerJo-Philipp Wich <jow@openwrt.org>2014-02-01 18:05:20 +0000
commit7e9ce8caa8956afef17d01f47eb37e5cecde0a94 (patch)
tree3a56027ee226cd467b40672cd49ae82c0efc94c0 /luci2/htdocs
parent1bcb587b9fbd9c513a7f60e6cb6de22eb564e79e (diff)
downloadluci2-ui-7e9ce8caa8956afef17d01f47eb37e5cecde0a94.tar.gz
luci2: Fix LuCI2.cbi.AbstractValue.formvalue() for deeply nested widget markup
Diffstat (limited to 'luci2/htdocs')
-rw-r--r--luci2/htdocs/luci2/luci2.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/luci2/htdocs/luci2/luci2.js b/luci2/htdocs/luci2/luci2.js
index c6c13a1..7a6e6a5 100644
--- a/luci2/htdocs/luci2/luci2.js
+++ b/luci2/htdocs/luci2/luci2.js
@@ -5957,7 +5957,7 @@ function LuCI2()
formvalue: function(sid)
{
var rv = [ ];
- var fields = $('#' + this.id(sid) + ' > input');
+ var fields = $('#' + this.id(sid) + ' input');
for (var i = 0; i < fields.length; i++)
if (typeof(fields[i].value) == 'string' && fields[i].value.length)