mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 19:50:05 +01:00
28 lines
704 B
JavaScript
28 lines
704 B
JavaScript
(function() {
|
|
|
|
'use strict';
|
|
|
|
angular
|
|
.module('harbor.details')
|
|
.controller('DetailsController', DetailsController);
|
|
|
|
DetailsController.$inject = ['$scope', '$location', '$routeParams'];
|
|
|
|
function DetailsController($scope, $location, $routeParams) {
|
|
var vm = this;
|
|
vm.isOpen = false;
|
|
vm.publicity = false;
|
|
vm.isProjectMember = true;
|
|
vm.closeRetrievePane = closeRetrievePane;
|
|
vm.togglePublicity = togglePublicity;
|
|
|
|
function closeRetrievePane() {
|
|
$scope.$broadcast('isOpen', false);
|
|
}
|
|
function togglePublicity(e) {
|
|
vm.publicity = e.publicity;
|
|
console.log('current project publicity:' + vm.publicity);
|
|
}
|
|
}
|
|
|
|
})(); |