Blame view

public/js/controllers/SessionCtrl.js 476 Bytes
20a0d553   Geoffrey PREUD'HOMME   Il parait que les...
1
2
  angular.module('SessionsCtrl', ['SessionsServ'])
      .controller('SessionCtrl', function ($scope, SessionServ) {
55a10789   Geoffrey PREUD'HOMME   Meilleure navbar
3
          $scope.isCollapsed = false;
7a1fe62d   Geoffrey PREUD'HOMME   Consistence des noms
4
          $scope.session = SessionServ.cur;
69695d81   Geoffrey PREUD'HOMME   Serveur: VĂ©rifica...
5
          $scope.disconnect = function () {
7a1fe62d   Geoffrey PREUD'HOMME   Consistence des noms
6
              SessionServ.disconnect();
2f593328   Geoffrey PREUD'HOMME   Linting
7
          };
7a1fe62d   Geoffrey PREUD'HOMME   Consistence des noms
8
          SessionServ.onChange(function () {
20a0d553   Geoffrey PREUD'HOMME   Il parait que les...
9
10
11
12
13
14
              $scope.session = SessionServ.cur;
          });
          // $scope.$on("$destroy", function () {
          //     // TODO
          // })
      });