dashboard
repositories
activity
search
login
common
/
securis
summary
reflog
commits
tree
compare
forks
blame
|
history
|
raw
|
HEAD
#394 feature - Several fixes related with form management
Roberto Sánchez
2014-01-13
edd47c68c6a08bd756d96213c38e896a0a257bd1
[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) {
}]);
})();