summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2009-10-10 22:18:50 +0000
committerJo-Philipp Wich <jow@openwrt.org>2009-10-10 22:18:50 +0000
commit42e1f743b394c95637b99feac7a93161c5215381 (patch)
treea02ea69d5e8234d64e0ca7d4f4b5df50492b7488
parentb47afa09346e39d0ff66a03b3f66ad2888b4d5d8 (diff)
libs/cbi: fix dynamic tab hiding
-rw-r--r--libs/cbi/htdocs/luci-static/resources/cbi.js3
-rw-r--r--libs/cbi/luasrc/view/cbi/tabmenu.htm1
2 files changed, 1 insertions, 3 deletions
diff --git a/libs/cbi/htdocs/luci-static/resources/cbi.js b/libs/cbi/htdocs/luci-static/resources/cbi.js
index f708d0f7f..004e12eaa 100644
--- a/libs/cbi/htdocs/luci-static/resources/cbi.js
+++ b/libs/cbi/htdocs/luci-static/resources/cbi.js
@@ -36,9 +36,6 @@ function cbi_d_add(field, dep, next) {
"deps": []
};
cbi_d.unshift(entry);
-
- if( entry.parent )
- cbi_c[entry.parent] = (cbi_c[entry.parent] || 0) + 1;
}
entry.deps.push(dep)
}
diff --git a/libs/cbi/luasrc/view/cbi/tabmenu.htm b/libs/cbi/luasrc/view/cbi/tabmenu.htm
index 5cd5c76aa..7648fe011 100644
--- a/libs/cbi/luasrc/view/cbi/tabmenu.htm
+++ b/libs/cbi/luasrc/view/cbi/tabmenu.htm
@@ -16,6 +16,7 @@ $Id$
<ul class="cbi-tabmenu">
<%- self.selected_tab = luci.http.formvalue("tab." .. self.config .. "." .. section) %>
<%- for _, tab in ipairs(self.tab_names) do if #self.tabs[tab].childs > 0 then %>
+ <script type="text/javascript">cbi_c['container.<%=self.config%>.<%=section%>.<%=tab%>'] = <%=#self.tabs[tab].childs%>;</script>
<%- if not self.selected_tab then self.selected_tab = tab end %>
<li id="tab.<%=self.config%>.<%=section%>.<%=tab%>" class="cbi-tab<%=(tab == self.selected_tab) and '' or '-disabled'%>">
<a onclick="this.blur(); return cbi_t_switch('<%=self.config%>.<%=section%>', '<%=tab%>')" href="<%=REQUEST_URI%>?tab.<%=self.config%>.<%=section%>=<%=tab%>"><%=self.tabs[tab].title%></a>