Slide-box "does-continue" issues
See original GitHub issueSeems that if you have 2 slides in a side-box and have does-continue="true"
, the slide will not function properly after it’s first loop.
Issue Analytics
- State:
- Created 9 years ago
- Comments:20 (1 by maintainers)
Top Results From Across the Web
Slidebox does-continue doesn't work on iPad
Hi, I have a problem with looping slidebox on iPad. I set attribute on ion-slide-box: <ion-slide-box show-pager="false" does-continue="true"> It works as ...
Read more >Toggle Ionic Slide Box "does-continue"
Is there a way to do this? I can't seem to locate a method on the slide box delegate which would allow such...
Read more >ion-slide-box - Directive in module ionic
The Slide Box is a multi-page container where each page can be swiped or ... How many milliseconds to wait to change slides...
Read more >Ion-slide-box, Infinite loop
But there is a bug when loading the network picture, loading the local picture is no problem;. <ion-slide-box does-continue= "true" auto-play= "true" ...
Read more >Ionic: slide-box pager issue
<ion-slide-box active-slide="1" pager-click="slide(index)" does-continue="true" class='padding-bottom-more'>. 13. <ion-slide ng-repeat="page in ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
$ionicSlideBoxDelegate.loop(true);
can solve this issues.It works very well with my app:
<ion-slide-box on-slide-changed="slideChanged(index)" auto-play="true" show-pager="false" does-continue="true" slide-interval="2000" ng-if="news.length"></ion-slide-box>
just ensure add ng-if=“news.length” in slide-box
and I update the slide-box too after looong JSONP request using $ionicSlideBoxDelegate.update();