harbor/static/ng/resources/js/layout/log/log.controller.js

15 lines
228 B
JavaScript
Raw Normal View History

(function() {
'use strict';
angular
.module('harbor.layout.log')
.controller('LogController', LogController);
2016-04-28 19:36:39 +02:00
LogController.$inject = ['$scope'];
2016-04-28 19:36:39 +02:00
function LogController($scope) {
2016-05-01 19:46:50 +02:00
}
})();