libs/web: give cbi tabcontainers a CSS class
authorJo-Philipp Wich <jow@openwrt.org>
Fri, 19 Nov 2010 17:35:06 +0000 (17:35 +0000)
committerJo-Philipp Wich <jow@openwrt.org>
Fri, 19 Nov 2010 17:35:06 +0000 (17:35 +0000)
libs/web/luasrc/view/cbi/tabcontainer.htm

index 9b2c7980a8a5b01df1b0214c50e8c1249401008e..5f1a80d610e88bf4aace69ddbd5b8c3283190c5a 100644 (file)
@@ -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>