client/app/app_controller.js
author rougeronj
Tue, 09 Jun 2015 19:09:29 +0200
changeset 145 a8b5b11ef6b2
parent 0 cef349423167
permissions -rw-r--r--
ignore the config file in src folder

(function(){
  'use strict';

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

})();