summaryrefslogtreecommitdiffhomepage
path: root/libs
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-11-19 17:35:06 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-11-19 17:35:06 +0000
commit7a7874d14e8d03dd29bd02c597ab4f85d75e45c7 (patch)
tree1c738e1122652eccfb834c370f32be2eae39d13c /libs
parentb4e6abe5bf3eae0d6da100358b2b71101dab4802 (diff)
libs/web: give cbi tabcontainers a CSS class
Diffstat (limited to 'libs')
-rw-r--r--libs/web/luasrc/view/cbi/tabcontainer.htm2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/web/luasrc/view/cbi/tabcontainer.htm b/libs/web/luasrc/view/cbi/tabcontainer.htm
index 9b2c7980a..5f1a80d61 100644
--- a/libs/web/luasrc/view/cbi/tabcontainer.htm
+++ b/libs/web/luasrc/view/cbi/tabcontainer.htm
@@ -13,7 +13,7 @@ $Id$
-%>
<% for tab, data in pairs(self.tabs) do %>
- <div id="container.<%=self.config%>.<%=section%>.<%=tab%>"<% if tab ~= self.selected_tab then %> style="display:none"<% end %>>
+ <div class="cbi-tabcontainer" id="container.<%=self.config%>.<%=section%>.<%=tab%>"<% if tab ~= self.selected_tab then %> style="display:none"<% end %>>
<% if data.description then %><div class="cbi-tab-descr"><%=data.description%></div><% end %>
<% self:render_tab(tab, section, scope or {}) %>
</div>