<div class="hockey-DateBlock" ng-repeat="key in ['13 мая', '14 мая', '15 мая', '16 мая', '17 мая', '18 мая', '19 мая', '20 мая']" ng-class="{'active' : $index == ActiveId}">
{{key}}
</div>
scope.activeId = function () {
return currentIndex + 1;
}
<div class="hockey-Date"
hockey-date-scroll
hds-item-width="50"
hds-active-id="$ctrl.activeId"
hds-items-length="8">
<div class="hockey-DateBlock" ng-repeat="date in $ctrl.dates" ng-class="{'active' : $index == $ctrl.activeId}">
{{date}}
</div>
</div>
scope: {
activeId: '=hdsActiveId'
},
ng-class="{'active' : $index == ActiveId()}"