Using Angular version 1.2.15, I found a bug that it seems started on version 1.2.2 until 1.2.15.
Html
<body ng-app="">
<ol ng-init="names=['John', 'Mary', 'Cate', 'Suz','Felipe','Vero']">
<li ng-repeat="name in names">
<span ng-class-odd="'shared odd'" ng-class-even="'shared even'">
{{name}}
</span>
</li>
</ol>
</body
CSS
.shared {color: red;}
.even{ background-color:yellow; }
.odd{ background-color:white; }
You will see how the odd style does not work on the 3rd Element.
Is there any workaround for this issue?
If not what would make more sense upgrade or downgrade?