Pedro Zurbach
Pedro Zurbach
Experiencing this as well in my own implementation. Could someone provide a pointer on how to address this issue? I tried the following: ```js export default Component.extend({ setup() { this.$().slick();...
@manny-grewal I did, I switched to [Swiper](http://idangero.us/swiper/) 😄
@marcoow Is there a way to avoid using `@classic` when extending the Cookie store? ```js import classic from 'ember-classic-decorator'; import Cookie from 'ember-simple-auth/session-stores/cookie'; @classic export default class ApplicationSessionStore extends Cookie...
@IgnaceMaes I am still on `5.7.2` of `ember-intl` but maybe this would help? In `config/ember-intl.js`, have you tried setting the following config key: ``` errorOnMissingTranslations: false ``` Hope it helps!
@longlho Which version would you recommend installing as latest? `6.0.1`? Thanks for your help!
@buschtoens Thank you for looking into this and sending all these details. I don't think I have the skills to help, but I'm impressed and supportive of your efforts to...
@buschtoens Any update on this? Seems like you've spent a significant amount of time understanding the mess that occurred in this repo's versions/tags. Is there anything we can do to...
@nbenz Since your 2nd PR is not merged yet, I was wondering how you currently make it all work? My current implementation to track purchases looks like this: ```js this.metrics.trackEvent({...
@Gorzas for some reason your solution did not work for me... I had to add this line to my `ember-cli-build.js` file: ```js app.import('node_modules/flatpickr/dist/plugins/rangePlugin.js'); ``` I'm using Ember 3.4 with `ember-auto-import`...
We are currently dealing with the same issue. We wanted to use `ember-tether` for something else than modals and now our existing tests are broken. A good solution for us...