mirror of https://github.com/fspc/BikeShed-1.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
309 B
14 lines
309 B
12 years ago
|
class AppTabPanel < Netzke::Basepack::TabPanel
|
||
|
component :bikes
|
||
|
component :brands_and_models_border
|
||
|
component :users_and_profiles_border
|
||
|
|
||
|
def configure(c)
|
||
|
c.active_tab = 0
|
||
|
c.prevent_header = true
|
||
|
c.items = [ :bikes, :brands_and_models_border, :users_and_profiles_border]
|
||
|
super
|
||
|
end
|
||
|
end
|
||
|
|