harbor/static/resources/js/components/system-management/system-management.directive.js

31 lines
792 B
JavaScript
Raw Normal View History

(function() {
'use strict';
angular
.module('harbor.system.management')
.directive('systemManagement', systemManagement);
2016-07-02 12:20:31 +02:00
SystemManagementController.$inject = ['$scope', '$location'];
2016-07-02 12:20:31 +02:00
function SystemManagementController($scope, $location) {
var vm = this;
vm.target = 'destinations';
2016-07-02 12:20:31 +02:00
$scope.$on('$locationChangeSuccess', function(e) {
vm.target = $location.path().substring(1);
});
}
function systemManagement() {
var directive = {
'restrict': 'E',
'templateUrl': '/static/resources/js/components/system-management/system-management.directive.html',
'scope': true,
'controller': SystemManagementController,
'controllerAs': 'vm',
'bindToController': true
};
return directive;
}
})();