I have two controllers, init
:
jQuery.Controller.extend('App.Controllers.Init', {
onDocument: true
},{
load: function() {
//call App.Controllers.Tabs on $('#tabs')
//it is not that easy as $('#tabs').tabs() -> Throws: Object doesn't support this property or method
}
});
And tabs
:
jQuery.Controller.extend('App.Controllers.Tabs,...
How to call tabs in init?