From 6e28963da25edf94a84468423f74acc381699542 Mon Sep 17 00:00:00 2001
From: Roberto Sánchez <roberto.sanchez@curisit.net>
Date: Thu, 26 Dec 2013 09:55:58 +0000
Subject: [PATCH] #333 feature - Added token helper
---
securis/src/main/resources/static/js/main.js | 18 ++++++++++++++++++
1 files changed, 18 insertions(+), 0 deletions(-)
diff --git a/securis/src/main/resources/static/js/main.js b/securis/src/main/resources/static/js/main.js
index ab5f5ab..ac9a886 100644
--- a/securis/src/main/resources/static/js/main.js
+++ b/securis/src/main/resources/static/js/main.js
@@ -1,4 +1,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) {
+
+ }]);
+
})();
\ No newline at end of file
--
Gitblit v1.3.2