Hi community,
I have problems in using the angular-slick-carousel (https://github.com/devmark/angular-slick-carousel) in an angular-meteor project. I’d be glad if someone could help me get this running since slick is a really great carousel implementation.
I added it to my project by meteor npm i -S angular-slick-carousel
.
In my app component I added slick by:
...
import 'angular-slick-carousel';
export default angular.module('myApp', [
angularMeteor,
ngMaterial,
'slickCarousel'
]);
I tried a named import of the module but this did not work out. When I import it in the above way, I get no compilation errors any more.
When I now use the component in the documented way, it’s just not working. Slick does not generate any dom-nodes as usual.
<slick infinite="true" slides-to-show="2" slides-to-scroll="2">
// my ng-repeat stuff
</slick>
Do I have to install slick manually as well? I didn’t think so, because the angular-slick-carousel seems to bring slick with it. Have you any suggestions how to get this running?
Thanks ,
Dave