diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-03-04 14:15:09 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-03-04 14:15:09 +0000 |
commit | fd0f8e80c50f01020258c73c41e206c38b4ca824 (patch) | |
tree | 7b04bdc85a51f657254d6f05fee7c7b0f6b6ea41 /libs | |
parent | 9de7ff8e69420b16078c51f6a1181d4438b653e9 (diff) |
libs/web: fix wrong default focus in dynlist widgets (#388)
Diffstat (limited to 'libs')
-rw-r--r-- | libs/web/htdocs/luci-static/resources/cbi.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/htdocs/luci-static/resources/cbi.js b/libs/web/htdocs/luci-static/resources/cbi.js index 8ced4419a..0a49a693a 100644 --- a/libs/web/htdocs/luci-static/resources/cbi.js +++ b/libs/web/htdocs/luci-static/resources/cbi.js @@ -748,7 +748,7 @@ function cbi_dynlist_init(name, respath, datatype, optional, choices) return false; } - cbi_dynlist_redraw(-1, -1, -1); + cbi_dynlist_redraw(NaN, -1, -1); } //Hijacks the CBI form to send via XHR (requires Prototype) |