dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#333 feature - Added initial admin page.
Roberto Sánchez
2013-12-26
d9ba90397d9bcfd664fe19e89bfb6b9f1cfc9e47
[common/securis.git]
/
securis
/
src
/
main
/
resources
/
static
/
js
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(function() {
'use strict';
var app = angular.module('app', ['ngRoute']);
app.controller('PacksCtrl', ['$scope', '$http',
function($scope, $http) {
}]);
app.controller('LicensesListCtrl', ['$scope', '$http',
function($scope, $http) {
}]);
app.controller('LicenseCtrl', ['$scope', '$http',
function($scope, $http) {
}]);
})();