Skip to content

Commit a5d3c6b

Browse files
authored
fix(transition): enable ios transition shadow by default (ionic-team#19051)
1 parent 5f86979 commit a5d3c6b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

core/scripts/testing/scripts.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@
77

88
window.Ionic = window.Ionic || {};
99
window.Ionic.config = window.Ionic.config || {};
10-
window.Ionic.config.experimentalTransitionShadow = true;
1110

1211
})();

core/src/components/content/content.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ export class Content implements ComponentInterface {
302302
const mode = getIonMode(this);
303303
const { scrollX, scrollY, forceOverscroll } = this;
304304

305-
const transitionShadow = (mode === 'ios' && config.getBoolean('experimentalTransitionShadow', false));
305+
const transitionShadow = (mode === 'ios' && config.getBoolean('experimentalTransitionShadow', true));
306306

307307
this.resize();
308308

0 commit comments

Comments
 (0)