Andrew Krawchyk
Andrew Krawchyk
No problem, I was cleaning up my unneeded issues this am and didn't mean to close this. What do you think would be a best next step? I can set...
Or just don't commit them to local storage and set them in the Vuex store in memory: - https://auth0.com/docs/security/store-tokens#don-t-store-tokens-in-local-storage - https://community.auth0.com/t/why-is-storing-tokens-in-memory-recommended/17742
@amorey big props for getting this released! Keep up the awesome work!
> Because if you use it with some bootstrap.js you should add this `bootstrap.js` file to the paths in the plugin config, see https://www.purgecss.com/with-webpack#options
BTW there is an easy workaround for this. When extending the modal, simply call `undelegateModalEvents` in the `onDestroy` function: ``` var Modal = Backbone.Modal.extend({ ... onDestroy: { this.undelegateModalEvents(); }, ......
does Yarn Plug'n'Play https://github.com/yarnpkg/rfcs/pull/101 change the approach to bundling at all?
This is an issue I've encountered with images uploaded from iOS devices as well. I believe it's due to embedded EXIF data in the image, presumably from the iOS camera...
Just gonna say that you should provide at least a short description of what isn't working with PNG file types @alicansoysal. Can you provide an example of how you're using...
@karsunke thanks for the workaround! Although, it does ruin UX/accessibility since the user can no longer navigate the autocomplete list via the keyboard. The workaround hides then shows the list...
@karsunke this does the same except maintains the user's ability to navigate the list via keyboard arrows: ``` var KEY_UP = 38; var KEY_DOWN = 40; var jElement = $("#address-search");...