Roberto Sánchez
2013-12-26 6e28963da25edf94a84468423f74acc381699542
securis/src/main/resources/static/js/main.js
....@@ -1,4 +1,22 @@
11 (function() {
2
+ 'use strict';
3
+
4
+ var app = angular.module('app', ['ngRoute']);
25
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
+
321
422 })();