forked from mbk-lab/rui_orig
Update tabsLayout.go
This commit is contained in:
parent
03799c329e
commit
ae8bba0f63
|
@ -79,14 +79,15 @@ type tabsLayoutData struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewTabsLayout create new TabsLayout object and return it
|
// NewTabsLayout create new TabsLayout object and return it
|
||||||
func NewTabsLayout(session Session) TabsLayout {
|
func NewTabsLayout(session Session, params Params) TabsLayout {
|
||||||
view := new(tabsLayoutData)
|
view := new(tabsLayoutData)
|
||||||
view.Init(session)
|
view.Init(session)
|
||||||
|
setInitParams(view, params)
|
||||||
return view
|
return view
|
||||||
}
|
}
|
||||||
|
|
||||||
func newTabsLayout(session Session) View {
|
func newTabsLayout(session Session) View {
|
||||||
return NewTabsLayout(session)
|
return NewTabsLayout(session, nil)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Init initialize fields of ViewsContainer by default values
|
// Init initialize fields of ViewsContainer by default values
|
||||||
|
|
Loading…
Reference in New Issue