You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, I have an object with elements - here I am making exemplars of elements and subscribe for theirs events.
var tabBar = new joTabBar([
{label: ' Account'},
{label: ' Settings'} no settings page yet
]);
var elements = {
'mainPageFooter' : new joFooter(tabBar),
'anotherPageFooter' : new joFooter([someButton, tabBar]),
};
Now if I willpush joCard which contains elements['anotherPageFooter' ] to stack- allwill be ok. But if I will am push joCard with mainPageFooter the joFooter element will be empty.
same problem when using stack.pop() - previous pages have empty joFooter. So last joFooter rendering empty joFooters which created before.
The text was updated successfully, but these errors were encountered:
For example, I have an object with elements - here I am making exemplars of elements and subscribe for theirs events.
var tabBar = new joTabBar([
{label: ' Account'},
{label: ' Settings'} no settings page yet
]);
var elements = {
'mainPageFooter' : new joFooter(tabBar),
'anotherPageFooter' : new joFooter([someButton, tabBar]),
};
Now if I willpush joCard which contains elements['anotherPageFooter' ] to stack- allwill be ok. But if I will am push joCard with mainPageFooter the joFooter element will be empty.
same problem when using stack.pop() - previous pages have empty joFooter. So last joFooter rendering empty joFooters which created before.
The text was updated successfully, but these errors were encountered: