Cory McArthur
Cory McArthur
@liamdebeasi - here's an even smaller repo: https://github.com/corysmc/test-route-modal
Thanks @liamdebeasi - I really appreciate it! I totally agree about the anti-pattern. I'll see if we can make the change internally to use modals properly. For reference here's another...
Repro https://stackblitz.com/edit/angular-ueypjw?file=src%2Fmain.tsx This is still occurring in react (not core) 1. Visit the docs https://ionicframework.com/docs/api/popover#side-and-alignment-demo 2. Click the "react" as framework in demo space 3. Click the Stackblitz link 4....
Seeing as this issue is still open, I wanted to confirm I'm doing this correctly still, and I noticed others have recently reported recently as well: https://github.com/firebase/firebase-js-sdk/issues/6504 On the latest...
We've noticed this problem too! Did you find any workarounds?
I ended up using `disableLegendScroll: '1'` in the chart config. Noted here: https://www.fusioncharts.com/dev/upgrading/change-log This setting belongs inside the chart config - similar to other options: https://www.fusioncharts.com/dev/chart-guide/chart-configurations/legend e.g. ```ts { "chart":...
Yep that solved it for me! ionic v6, stenciljs, capacitor app ```ts setupConfig({ scrollAssist: false, }); ``` What feature am I missing out on by setting scrollAssist to false? Scrolling...
Hmm, I'm finding the opposite of that. `scrollAssist: false` is what fixed it for me, so that when the keyboard opens the input focuses and moves into view. e.g.: `scrollAssist:false`...
Beautiful, thank you for explaining! So here's the other better workaround then: 1. Don't disable scrollAssist. 2. Add extra blank space at the bottom of your ion-content 3. Makes for...
This is fixed in the latest version. See this bug: https://forum.fusioncharts.com/topic/25384-problem-scrolling-chart-area-on-mobile/ And the fix in https://www.fusioncharts.com/dev/upgrading/version-history/version-3-17-X However, I did notice this happening when interacting with a legend on the latest...