client/app/app_controller.js
author rougeronj
Fri, 22 May 2015 12:35:53 +0200
changeset 89 7faa53118457
parent 0 cef349423167
permissions -rw-r--r--
add order in tasks to be sure 'copy-server' task copy the files after building them

(function(){
  'use strict';

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

})();