I checked the controller every few seconds, which in turn causes a quiet call to the backend api. Everything works as expected, except when I go to another section (processed by a separate controller), the checkmark continues to work.
Is it possible to completely remove the controller from the area?
Here's the paste of my current controller:
myApp.controller('SupervisorController', function($scope, supervisord, $timeout) { $scope.supervisord = supervisord; (function tick() { $scope.supervisord.fetch(); $timeout(tick, 2500); })(); });
source share