client/app/app_controller.js
author rougeronj
Wed, 27 May 2015 18:59:55 +0200
changeset 97 0afdaa004ee1
parent 0 cef349423167
permissions -rw-r--r--
replace all the tab by spaces

(function(){
  'use strict';

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

})();