summaryrefslogtreecommitdiffstats
path: root/app/login/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/login/index.js')
-rw-r--r--app/login/index.js34
1 files changed, 17 insertions, 17 deletions
diff --git a/app/login/index.js b/app/login/index.js
index 8867065..04343f5 100644
--- a/app/login/index.js
+++ b/app/login/index.js
@@ -5,23 +5,23 @@
* @exports app/login/index
*/
-window.angular && (function (angular) {
- 'use strict';
+window.angular && (function(angular) {
+ 'use strict';
- angular
- .module('app.login', [
- 'ngRoute',
- 'app.constants',
- 'app.common.services'
- ])
- // Route configuration
- .config(['$routeProvider', function ($routeProvider) {
- $routeProvider
- .when('/login', {
- 'template': require('./controllers/login-controller.html'),
- 'controller': 'LoginController',
- authenticated: false
- });
- }]);
+ angular
+ .module('app.login', [
+ 'ngRoute',
+ 'app.constants',
+ 'app.common.services'
+ ])
+ // Route configuration
+ .config(['$routeProvider', function($routeProvider) {
+ $routeProvider
+ .when('/login', {
+ 'template': require('./controllers/login-controller.html'),
+ 'controller': 'LoginController',
+ authenticated: false
+ });
+ }]);
})(window.angular);
OpenPOWER on IntegriCloud