I'm using bootstrap-material-design in my Angular app.
The ripple effect works well throughout the app, though when using ng-repeat
I'm losing the ripple effect.
I created an item outside the ng-repeat
in the same <ul>
and works fine.
Is it caused because of ng-repeat creates a new scope? If so how should I approach it correctly...?
Is there something I'm missing in my code?
<ul class="list-unstyled">
<li class="btn" ng-repeat="data in eventsData">
{{data.title}}
</li>
</ul>