This repository was archived by the owner on May 29, 2019. It is now read-only.
This repository was archived by the owner on May 29, 2019. It is now read-only.
I cannot manipulate the order of carousel slide via array #3331
Closed
Description
Example
if we have an array such as slides = [slide1,slide2,slide3,slide4]; then we need to insert slide5 to between slide3 and slide4 by splice function,So we have [slide1,slide2,slide3,slide5,slide4] we expect the view result should be sorted as the same order.But actually the library perform slide5 displayed at the last of slide like we push slide5 to the last of array, I think this is bad practice for me I expect the slides should be sorted as the same order of an array it hard to sort like dynamic slide.