fix(transition): enable ios transition shadow by default (#19051)

This commit is contained in:
Adam Bradley
2019-08-08 12:30:02 -05:00
committed by GitHub
parent 5f869796be
commit a5d3c6bcd2
2 changed files with 1 additions and 2 deletions

View File

@ -7,6 +7,5 @@
window.Ionic = window.Ionic || {};
window.Ionic.config = window.Ionic.config || {};
window.Ionic.config.experimentalTransitionShadow = true;
})();

View File

@ -302,7 +302,7 @@ export class Content implements ComponentInterface {
const mode = getIonMode(this);
const { scrollX, scrollY, forceOverscroll } = this;
const transitionShadow = (mode === 'ios' && config.getBoolean('experimentalTransitionShadow', false));
const transitionShadow = (mode === 'ios' && config.getBoolean('experimentalTransitionShadow', true));
this.resize();