diff --git a/src/views/app.js b/src/views/app.js index 8ba1c2537..71001a45c 100644 --- a/src/views/app.js +++ b/src/views/app.js @@ -1567,7 +1567,7 @@ angular.module('Application').controller('AppController', ['$scope', '$location' $scope[$scope.view].show(); // initialize now that we have all the values - var refreshTimer = $interval(function () { refreshApp($scope.app.id); }, 2000); // call with inline function to avoid iteration argument passed see $interval docs + var refreshTimer = $interval(function () { refreshApp($scope.app.id); }, 5000); // call with inline function to avoid iteration argument passed see $interval docs $scope.$on('$destroy', function () { $interval.cancel(refreshTimer); });