mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-26 18:48:02 +01:00
16 lines
315 B
JavaScript
16 lines
315 B
JavaScript
(function() {
|
|
|
|
'use strict';
|
|
|
|
angular
|
|
.module('harbor.layout.dashboard')
|
|
.controller('DashboardController', DashboardController);
|
|
|
|
DashboardController.$inject = ['$scope'];
|
|
|
|
function DashboardController($scope) {
|
|
var vm = this;
|
|
vm.customBodyHeight = {'height': '165px'};
|
|
}
|
|
|
|
})(); |