Blame view

public/js/controllers/SessionCtrl.js 523 Bytes
fa42131e   Geoffrey PREUD'HOMME   Réglage des dépen...
1
  angular.module('SessionsCtrl', ['SessionsServ']).controller('SessionCtrl', ['$scope', 'SessionServ',
7a1fe62d   Geoffrey PREUD'HOMME   Consistence des noms
2
      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
9
          SessionServ.onChange(function () {
                  $scope.session = SessionServ.cur;
2f593328   Geoffrey PREUD'HOMME   Linting
10
11
12
13
              });
              // $scope.$on("$destroy", function () {
              //     // TODO
              // })
9a023783   Geoffrey PREUD'HOMME   [WIP] Session mis...
14
      }
2f593328   Geoffrey PREUD'HOMME   Linting
15
  ]);