harbor/static/resources/js/layout/add-new/add-new.controller.js

15 lines
242 B
JavaScript
Raw Normal View History

(function() {
'use strict';
angular
.module('harbor.layout.add.new')
.controller('AddNewController', AddNewController);
AddNewController.$inject = [];
function AddNewController() {
var vm = this;
}
})();