I have this working implementation af a angularJS app which fetches some links from an URL and paint them. However the links on the URL are being updated constantly, I woul
I had to change to order to make it work:
From
$scope.intervalFunction(); $rootScope.myAppMainCtrlRefreshRunning = false;
to
$rootScope.myAppMainCtrlRefreshRunning = false; $scope.intervalFunction();
Otherwise the loop only executes once