dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#394 feature - Added error messages to Admin module
Roberto Sánchez
2014-01-13
225dc136c1c6fba26b2e4f8b763cbd3fc4d596e3
[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) {
}]);
})();