Heo
Heo
This issue is not related with stacktrace.js because stacktrace.js package.json not include @angular/core @angular/router. You should check other npm package (which is related with @angular/core, @angular/router).
@petinho It is not ngx-slick-carousel problem. Did you add slick library in angular.json? Include slick css in "styles" at your angular.json file : ``` "styles": [ ... "node_modules/slick-carousel/slick/slick.scss", "node_modules/slick-carousel/slick/slick-theme.scss", ......
@petinho @dianaVidalC It is common bug when trying to use jQuery library in Angular. There is lots of causes make it happened. Please give more information about your project. 1....
I also got this error when i included some js library which throw error on runtime (in browser). My scripts section was like below. ``` "node_modules/jquery/dist/jquery.min.js", "external/image-viewer/image-viewer.js", "external/dsp.js", "external/object-polyfills.js", "node_modules/slick-carousel/slick/slick.min.js",...
https://github.com/leo6104/ngx-slick-carousel/issues/18 Same issue.
Thank you for detail explanation. I modified unslick() function as you said. https://github.com/leo6104/ngx-slick-carousel/commit/9c421d6aa27930d1cb9c1723ace246f8cbee68aa Can you check 0.4.3 version? Actually, you don't need to call `initSlick(slideConfig)` and `unslick()` manually. **1. change...
Please try 0.5.0. I published new version with angular 9.0.4 updates,
You can pass slick's configuration 'appendDots', 'appendArrows' config via `@Input() config: any;` in ngx-slick-carousel component. ``` slideConfig = { appendDots: jQuery(elem), appendArrows: jQuery(elem) }; ``` Is there any other thoughts...
@jessepinuelas Sorry for late comment. I guess $('.carousel-controls') not binding to real element DOM because the `@Input() config` variable defined before ngAfterViewInit. Did you try `this.config.appendDots = $('.carousel-controls');` in ngAfterViewInit...
@jessepinuelas There is a problem with dynamic [config] input. (If slideConfig variable changed after initializing slick, the new config doesn't work) So i fix it in 0.4.2 release. If you...