libs/web: fix row ordering for named sections
authorJo-Philipp Wich <jow@openwrt.org>
Thu, 20 Jan 2011 00:47:03 +0000 (00:47 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Thu, 20 Jan 2011 00:47:03 +0000 (00:47 +0000)
libs/web/htdocs/luci-static/resources/cbi.js

index ac4eaa9..c1d0dfd 100644 (file)
@@ -751,7 +751,7 @@ function cbi_row_swap(elem, up, store)
                        /cbi-rowstyle-[12]/, 'cbi-rowstyle-' + (1 + (idx % 2))
                );
 
-               if (table.rows[idx].id && table.rows[idx].id.match(/-(cfg[0-9a-f]+)$/) )
+               if (table.rows[idx].id && table.rows[idx].id.match(/-([^\-]+)$/) )
                        ids.push(RegExp.$1);
        }