chore(popup): rename animation config

Closes #244
This commit is contained in:
Adam Bradley
2015-11-10 21:42:42 -06:00
parent 877b929a68
commit e43d0e6057
2 changed files with 6 additions and 6 deletions

View File

@ -67,8 +67,8 @@ export class Popup {
constructor(ctrl: OverlayController, config: Config) {
this.ctrl = ctrl;
this._defaults = {
enterAnimation: config.get('popupPopIn'),
leaveAnimation: config.get('popupPopOut'),
enterAnimation: config.get('popupEnter'),
leaveAnimation: config.get('popupLeave'),
};
}

View File

@ -24,8 +24,8 @@ Config.setModeConfig('ios', {
pageTransition: 'ios',
pageTransitionDelay: 16,
popupPopIn: 'popup-pop-in',
popupPopOut: 'popup-pop-out',
popupEnter: 'popup-pop-in',
popupLeave: 'popup-pop-out',
tabbarPlacement: 'bottom',
});
@ -53,8 +53,8 @@ Config.setModeConfig('md', {
pageTransition: 'md',
pageTransitionDelay: 80,
popupPopIn: 'popup-md-pop-in',
popupPopOut: 'popup-md-pop-out',
popupEnter: 'popup-md-pop-in',
popupLeave: 'popup-md-pop-out',
tabbarHighlight: true,
tabbarPlacement: 'top',