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: {
ios: 'reveal',
android: 'overlay',
base: 'overlay',
core: 'overlay',
}
},
dragThreshold: {},

View File

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

View File

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

View File

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