Edgar Quintero

Results 16 comments of Edgar Quintero

Solved it by ``` const eventSource = new EventSourcePolyfill('api/incoming', { heartbeatTimeout: 100000000 })```

I can confirm `styleUrls` works perfectly fine, not sure what the issue is here. I'm currently using Angular 11. Either way getting an update to Angular 12 would be awesome.

A component should be able to have it's own unique styling regardless of the global styling being used, if needed, without havintg to use `!important`.

As stated by @camslice works with `dotenv`. Ex: `'/dist/': 'http://localhost:' + process.env.PORT + '/',`

Same issue, setting `imageAnimation: NgxGalleryAnimation.Slide` fixes it as @raffaelfoidl says. Using Angular 11.

Same issue, using angular `15.0.0` - seems to be an issue with compatibility interfaces `@angular/fire/compat/firestore/interfaces.d.ts`. This is **momentarily** fixed by changing the above file, replacing line numbers 15 and 24...

Perhaps the issue is with `current: -1` in the `joyride` object. Not sure why there is a -1 as current. It only happens after clicking next slide too. If I...

I fixed by opening the source file `joyride.js` and changing the function `afterTransition` to the following: ``` if (scope.joyride.transitionStep == 'next') { scope.joyride.current++; } else { if (scope.joyride.current > 0)...

PR: https://github.com/ahmed-wagdi/angular-joyride/pull/21