Platform.ready() for excellence

This commit is contained in:
Adam Bradley
2015-06-26 10:49:03 -05:00
parent ef82b00f45
commit 69e7d7c69f
7 changed files with 68 additions and 84 deletions

View File

@ -121,8 +121,7 @@ class FadeIn extends Animation {
this
.easing('ease')
.duration(250)
.fadeIn()
.before.addClass('show-modal');
.fadeIn();
}
}
@ -134,8 +133,7 @@ class FadeOut extends Animation {
this
.easing('ease')
.duration(250)
.fadeOut()
.after.removeClass('show-modal');
.fadeOut();
}
}

View File

@ -175,6 +175,10 @@ export function main(ionicBootstrap) {
console.log('isRTL', app.isRTL())
console.log('lang', app.lang())
Platform.ready().then(() => {
console.log('Platform.ready')
});
});
}