I'm having trouble with the following situation: I have a ng-view on my page, but I need two scripts that I implement at the bottom of the page wait for my ng-view load so they interact with the element classes within my ng-view. These are the " scrollreveal.js " and " magnific-popup.min.js " Code below
<ng-view></ng-view>
<!--Core JS-->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<!--AngularJS-->
<script src="app/AngularJS/angular.min.js"></script>
<script src="app/AngularJS/angular-route.min.js"></script>
<!--App-->
<script src="app/app.js"></script>
<!--Routes-->
<script src="app/routes.js"></script>
<!--Directives-->
<!--<script src="app/directives/frameworks-directive.js"></script>-->
<!--Controllers-->
<!--Frameworks JS-->
<script src="js/scrollreveal.js"></script>
<script src="js/jquery.easing.min.js"></script>
<script src="js/jquery.fittext.js"></script>
<script src="js/jquery.magnific-popup.min.js"></script>
<script src="js/creative.js"></script>