Blame view

public/js/controllers/NavbarCtrl.js 384 Bytes
20a0d553   Geoffrey PREUD'HOMME   Il parait que les...
1
  angular.module('SessionsCtrl', ['SessionsServ'])
83c88813   Geoffrey PREUD'HOMME   Ajout d'une page ...
2
      .controller('NavbarCtrl', 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;
7a1fe62d   Geoffrey PREUD'HOMME   Consistence des noms
5
          SessionServ.onChange(function () {
20a0d553   Geoffrey PREUD'HOMME   Il parait que les...
6
7
8
9
10
11
              $scope.session = SessionServ.cur;
          });
          // $scope.$on("$destroy", function () {
          //     // TODO
          // })
      });