Blame view

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