ngRepeat controls does not correctly work with `| orderBy`
extempl opened this issue · 1 comments
extempl commented
Because of wrong regexp here:
angular-carousel/dist/angular-carousel.js
Line 240 in 6fcd78c
The problem is appear here:
angular-carousel/dist/angular-carousel.js
Lines 458 to 459 in 6fcd78c
I've hotfixed this with var items = repeatCollection.replace('::', '').replace(/\s*\|.*/, '')
on the 457th line (and replaced repeatCollection.replace('::', '')
with items
on 458-459 lines), but I think, this should be done in more correct way.