MOBILE-3401 tabs: Recalculate tab height if needed
parent
31041f5ff9
commit
bf8c4d7007
|
@ -477,6 +477,11 @@ export class CoreTabsComponent implements OnInit, AfterViewInit, OnChanges, OnDe
|
||||||
* @param scrollElement Scroll element to check scroll position.
|
* @param scrollElement Scroll element to check scroll position.
|
||||||
*/
|
*/
|
||||||
showHideTabs(scrollElement: any): void {
|
showHideTabs(scrollElement: any): void {
|
||||||
|
if (!this.tabBarHeight && this.topTabsElement.offsetHeight != this.tabBarHeight) {
|
||||||
|
// Wrong tab height, recalculate it.
|
||||||
|
this.calculateTabBarHeight();
|
||||||
|
}
|
||||||
|
|
||||||
if (!this.tabBarHeight) {
|
if (!this.tabBarHeight) {
|
||||||
// We don't have the tab bar height, this means the tab bar isn't shown.
|
// We don't have the tab bar height, this means the tab bar isn't shown.
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue