rename platform base to core

This commit is contained in:
Adam Bradley
2015-04-10 15:42:22 -05:00
parent a55d0ab478
commit dda0b7a8a2
4 changed files with 6 additions and 6 deletions

View File

@ -71,7 +71,7 @@ new IonicComponent(Aside, {
defaults: { defaults: {
ios: 'reveal', ios: 'reveal',
android: 'overlay', android: 'overlay',
base: 'overlay', core: 'overlay',
} }
}, },
dragThreshold: {}, dragThreshold: {},

View File

@ -92,14 +92,14 @@ new IonicComponent(Tabs, {
defaults: { defaults: {
ios: 'bottom', ios: 'bottom',
android: 'top', android: 'top',
base: 'bottom' core: 'bottom'
} }
}, },
tabBarIcons: { tabBarIcons: {
defaults: { defaults: {
ios: 'top', ios: 'top',
android: 'none', android: 'none',
base: 'top' core: 'top'
} }
}, },
tabBarText: {} tabBarText: {}

View File

@ -30,14 +30,14 @@ new IonicComponent(BackButton, {
defaults: { defaults: {
ios: 'ion-ios-arrow-back', ios: 'ion-ios-arrow-back',
android: 'ion-android-arrow-back', android: 'ion-android-arrow-back',
base: 'ion-chevron-left' core: 'ion-chevron-left'
} }
}, },
text: { text: {
defaults: { defaults: {
ios: 'Back', ios: 'Back',
android: '', android: '',
base: '' core: ''
} }
} }
} }

View File

@ -73,7 +73,7 @@ platform.register({
// Last case is a catch-all // Last case is a catch-all
platform.setDefaultPlatform({ platform.setDefaultPlatform({
name: 'base' name: 'core'
}) })
platform.set( platform.detect() ) platform.set( platform.detect() )