client/app/app_controller.js
author rougeronj
Fri, 03 Apr 2015 15:01:41 +0200
changeset 61 5abd0a9eafbc
parent 0 cef349423167
permissions -rw-r--r--
custom ObtainToken function to add PopulateVisite function when a user connects

(function(){
  'use strict';

  angular.module('ammico')
  .controller('routeClassCtrl', function($scope, $location) {
    $scope.isActive = function(route) {
        return route === $location.path();
    };
  });

})();