1
0
mirror of https://github.com/fspc/BikeShed-1.git synced 2025-03-10 21:23:23 -04:00
BikeShed-1/app/components/app_view.rb

15 lines
239 B
Ruby
Raw Normal View History

2012-12-23 09:02:07 -05:00
class AppView < Netzke::Basepack::Viewport
js_configure do |c|
c.layout = :fit
end
def configure(c)
super
c.items = [
{netzke_component: :app_tab_panel, region: :center}
]
end
component :app_tab_panel
end