client/app/app_controller.js
author rougeronj
Wed, 08 Jul 2015 17:59:04 +0200
changeset 182 bb6a5b3eb269
parent 0 cef349423167
permissions -rw-r--r--
Added tag V0.1-alpha.3 for changeset 6a27a4d81629

(function(){
  'use strict';

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

})();