Cory McArthur

Results 26 comments of Cory McArthur

> > This plugin will also fix the problem (and is more lightweight): https://capacitorjs.com/docs/apis/text-zoom > > But you have to kill and re-start the app to take effect, right? I...

Here's my solution to this problem - works really well: 1. when on a mobile size screen - the menu toggles open and close 2. when on desktop the split...

I also needed this functionality so I added a PR to expose params to youtube to fix this issue: https://github.com/vime-js/vime/pull/383

Thanks @onderceylan - this pointed me downt he right path. What I needed to do was copy the svg folder: ```ts // main.ts import * as CopyPlugin from 'copy-webpack-plugin'; export...

I solved this by using: ionic v6 (stenciljs) ```ts setupConfig({ scrollAssist: false, }); ``` Although `scrollAssist` is not documented - here's how you use setupConfig: v5: https://ionicframework.com/docs/v5/react/config Ionic react has...