mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-03-10 21:23:23 -04:00
15 lines
239 B
Ruby
15 lines
239 B
Ruby
|
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
|