securis/src/main/resources/static/js/main.js
.. .. @@ -1,4 +1,22 @@ 1 1 (function() { 2 + 'use strict';3 +4 + var app = angular.module('app', ['ngRoute']);2 5 6 + app.controller('PacksCtrl', ['$scope', '$http',7 + function($scope, $http) {8 +9 + }]);10 +11 + app.controller('LicensesListCtrl', ['$scope', '$http',12 + function($scope, $http) {13 +14 + }]);15 +16 + app.controller('LicenseCtrl', ['$scope', '$http',17 + function($scope, $http) {18 +19 + }]);20 +3 21 4 22 })();