subheaders should know when there are tabs above them

This commit is contained in:
Nick Wientge 2015-01-17 16:35:21 -08:00
parent 1af61b8e4a
commit 7095005b91

View file

@ -16,6 +16,10 @@ Template.ionSubheaderBar.helpers({
classes.push('bar-stable');
}
if (Session.get('hasTabsTop')) {
classes.push('has-tabs-top');
}
return classes.join(' ');
}
});