Skip to content

Commit

Permalink
few comments here and there
Browse files Browse the repository at this point in the history
  • Loading branch information
rajivramv committed Jun 4, 2015
1 parent 23b4a7c commit b6f971e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/login/js/config/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Configuring the different login states - login and signup.
angular.module('login')
.config(['$stateProvider',function($stateProvider){
$stateProvider
Expand Down
1 change: 1 addition & 0 deletions src/components/login/js/controllers/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// controllers that exposes login(), logout(), confirm() and signup() to the views.
angular.module('login')
.controller('loginController',['$rootScope','$scope','$state','$kinvey','notify',function($rootScope,$scope,$state,$kinvey,notify){

Expand Down
1 change: 1 addition & 0 deletions src/components/tasks/js/config/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Configuring the task states. The task are resolved by fetching them from kinvey before the root.tasks state loads
angular.module('tasks')
.config(['$stateProvider','$urlRouterProvider',function($stateProvider,$urlRouterProvider){
$stateProvider
Expand Down
2 changes: 2 additions & 0 deletions src/components/tasks/js/controllers/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Expose approve(), addTask(), toLocale() methods to the views. toLocale() is used to display the date
// in locale format
angular.module('tasks')
.controller('tasksController',['$rootScope','$scope','$state','$kinvey','tasks','notify',function($rootScope,$scope,$state,$kinvey,tasks,notify){

Expand Down

0 comments on commit b6f971e

Please sign in to comment.