David DeSandro
David DeSandro
Hello! Thank you for this contribution. I've recently revamped this project for better testing. If you're still interested in this PR, could you pull the latest and give it another...
Hi. I had to de-prioritize Metafizzy this year. I'll try to knock out some issues in the next couple weeks.
Thanks for this feature request. Add a 👍 reaction if you'd like to see this feature added to Flickity.
Flickity is designed for browser environments. You'll have to look into solutions around `window` on server-side environments.
One solution is to change the global `window` argument to `this`. In browsers `this` will be `window`, but server side, it will be the global object.
You can get this functionality through using the `change` event ``` js let hueb = new Huebee( '.color-input', { }); hueb.on( 'change', function() { hueb.close(); }); ``` see demo https://codepen.io/desandro/pen/xxwJyjz
Thanks for writing up this issue. Lots of great points here! Changing Flickity page dots from `` to `` or `` would be a significant change, one that I'd like...
copy/pasting @tbredin 's proposal from #1116 --- I wanted to raise an issue that — without building an entirely custom navigation — the page dot text doesn't appear to be...
Yup, this is how Flickity was coded. It's based off framerate not actual time. **Add a 👍 reaction** to this issue if you would like to see Flickity get time-based...
Thanks for reporting this issue. For local development, I use files in `sandbox/`. These are static HTML, CSS, and JavaScript. So you can just drag & drop them directly in...