mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
fix(config): set the properties for each mode and add defaults
closes #6132
This commit is contained in:
@@ -232,8 +232,8 @@ export class Tabs extends Ion {
|
||||
super(_elementRef);
|
||||
this.parent = parent;
|
||||
this.id = ++tabIds;
|
||||
this.subPages = _config.getBoolean('tabSubPages');
|
||||
this._useHighlight = _config.getBoolean('tabbarHighlight');
|
||||
this.subPages = _config.getBoolean('tabSubPages', false);
|
||||
this._useHighlight = _config.getBoolean('tabbarHighlight', false);
|
||||
this._sbPadding = _config.getBoolean('statusbarPadding', false);
|
||||
|
||||
if (parent) {
|
||||
|
||||
Reference in New Issue
Block a user