client/app/app_controller.js
author rougeronj
Wed, 08 Apr 2015 00:39:23 +0200
changeset 79 1be5cc51e359
parent 0 cef349423167
permissions -rw-r--r--
Add url to access main page of the project and gulp "copy-server" to copy the ammico app to the server

(function(){
  'use strict';

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

})();