note description: "Summary description for {WSF_NAVBAR_CONTROL}." author: "" date: "$Date$" revision: "$Revision$" class WSF_NAVBAR_CONTROL inherit WSF_STATELESS_MULTI_CONTROL [WSF_STATELESS_CONTROL] create make_navbar feature collapse: WSF_STATELESS_MULTI_CONTROL [WSF_STATELESS_CONTROL] nav: WSF_STATELESS_MULTI_CONTROL [WSF_STATELESS_CONTROL] feature {NONE} -- Initialization make_navbar(brand:STRING) local container: WSF_STATELESS_MULTI_CONTROL [WSF_STATELESS_CONTROL] header: WSF_STATELESS_MULTI_CONTROL [WSF_STATELESS_CONTROL] do make_multi_control add_class ("navbar navbar-inverse navbar-fixed-top") create header.make_multi_control create nav.make_multi_control create collapse.make_multi_control add_control (header) header.add_class ("navbar-header") --
end end