Lines Matching full:scope
10 'scope':
13 '$rootScope', '$scope', 'dataService', '$location', '$timeout',
14 function($rootScope, $scope, dataService, $location, $timeout) {
15 $scope.dataService = dataService;
16 $scope.activate = function(imageId, imageVersion, imageType) {
17 $scope.$parent.activateImage(imageId, imageVersion, imageType);
20 $scope.delete = function(imageId, imageVersion) {
21 $scope.$parent.deleteImage(imageId, imageVersion);
24 $scope.changePriority = function(imageId, imageVersion, from, to) {
25 $scope.$parent.changePriority(imageId, imageVersion, from, to);
28 $scope.toggleMoreDropdown = function(event, firmware) {