client/app/app_controller.js
author rougeronj
Wed, 08 Apr 2015 00:37:52 +0200
changeset 78 aaffa46a2b79
parent 0 cef349423167
permissions -rw-r--r--
add gulp task "copy-server" to copy the project built, on the django server

(function(){
  'use strict';

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

})();