We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
How can I hide a slide? I don't want to show, if empty. I tried like this without success:
<ks-swiper-container loop="true" show-nav-buttons="false" direction="vertical" pagination-is-active="true" pagination-clickable="true"> <ks-swiper-slide data-ng-if="value.length" class="swiper-slide"> {{value}} </ks-swiper-slide> <ks-swiper-slide class="swiper-slide"> slide2 </ks-swiper-slide> <ks-swiper-slide class="swiper-slide"> slide3 </ks-swiper-slide> </ks-swiper-container>
The text was updated successfully, but these errors were encountered:
Maybe you can use ng-for to create your slide with a scope variable :
<ks-swiper-container loop="true" show-nav-buttons="false" direction="vertical" pagination-is-active="true" pagination-clickable="true"> <ks-swiper-slide class="swiper-slide" ng-repeat="value in values track by $index" > {{value}} </ks-swiper-slide> </ks-swiper-container>
Sorry, something went wrong.
No branches or pull requests
Hi,
How can I hide a slide? I don't want to show, if empty.
I tried like this without success:
The text was updated successfully, but these errors were encountered: