libs/cbi: fix dynamic tab hiding
This commit is contained in:
parent
b47afa0934
commit
42e1f743b3
2 changed files with 1 additions and 3 deletions
|
@ -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)
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue