When setting up my Angular App, I include various resources like this:
angular.module('myApp', ['infinite-scroll', 'chieffancypants.loadingBar', 'ngResource'])
Next, in the html file:
<script type="text/javascript" src="js/lib/angular-resource.min.js"></script>
<script type="text/javascript" src="js/lib/ng-infinite-scroll.js"></script>
<script type="text/javascript" src="js/lib/loading-bar.js"></script>
However, the loading bar and infinite scroll features do not appear to be working as expected.
Is there something that I may have overlooked?
You can view a live example on Plunker.