Blame view

public/js/controllers/SessionCtrl.js 473 Bytes
7a1fe62d   Geoffrey PREUD'HOMME   Consistence des noms
1
2
3
  angular.module('SessionsCtrl', []).controller('SessionCtrl', ['$scope', 'SessionServ',
      function ($scope, SessionServ) {
          $scope.session = SessionServ.cur;
69695d81   Geoffrey PREUD'HOMME   Serveur: VĂ©rifica...
4
          $scope.disconnect = function () {
7a1fe62d   Geoffrey PREUD'HOMME   Consistence des noms
5
              SessionServ.disconnect();
2f593328   Geoffrey PREUD'HOMME   Linting
6
          };
7a1fe62d   Geoffrey PREUD'HOMME   Consistence des noms
7
8
          SessionServ.onChange(function () {
                  $scope.session = SessionServ.cur;
2f593328   Geoffrey PREUD'HOMME   Linting
9
10
11
12
              });
              // $scope.$on("$destroy", function () {
              //     // TODO
              // })
9a023783   Geoffrey PREUD'HOMME   [WIP] Session mis...
13
      }
2f593328   Geoffrey PREUD'HOMME   Linting
14
  ]);