Blame view

public/js/controllers/SessionCtrl.js 497 Bytes
8bb442a5   Geoffrey PREUD'HOMME   Possibilité de se...
1
2
  angular.module('SessionsCtrl', []).controller('SessionController', ['$scope', 'SessionService',
      function ($scope, SessionService) {
2f593328   Geoffrey PREUD'HOMME   Linting
3
          $scope.session = SessionService.cur;
69695d81   Geoffrey PREUD'HOMME   Serveur: Vérifica...
4
          $scope.disconnect = function () {
2f593328   Geoffrey PREUD'HOMME   Linting
5
6
              SessionService.disconnect();
          };
69695d81   Geoffrey PREUD'HOMME   Serveur: Vérifica...
7
          SessionService.onChange(function () {
2f593328   Geoffrey PREUD'HOMME   Linting
8
9
10
11
12
                  $scope.session = SessionService.cur;
              });
              // $scope.$on("$destroy", function () {
              //     // TODO
              // })
9a023783   Geoffrey PREUD'HOMME   [WIP] Session mis...
13
      }
2f593328   Geoffrey PREUD'HOMME   Linting
14
  ]);