harbor/static/resources/js/layout/dashboard/dashboard.controller.js

16 lines
315 B
JavaScript
Raw Normal View History

(function() {
'use strict';
angular
.module('harbor.layout.dashboard')
.controller('DashboardController', DashboardController);
2016-06-25 21:12:17 +02:00
DashboardController.$inject = ['$scope'];
2016-06-25 21:12:17 +02:00
function DashboardController($scope) {
var vm = this;
vm.customBodyHeight = {'height': '165px'};
}
})();