This repository has been archived on 2020-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
angularjs-batarang/js/controllers/DepsCtrl.js

10 lines
234 B
JavaScript
Raw Normal View History

2012-11-13 14:22:53 +00:00
panelApp.controller('DepsCtrl', function DepsCtrl($scope, appDeps, poll) {
$scope.$on('poll', function () {
appDeps.get(function (deps) {
$scope.$apply(function () {
$scope.deps = deps;
});
});
});
});