client/app/app_controller.js
author rougeronj
Wed, 10 Jun 2015 12:14:04 +0200
changeset 150 78e82bf8ff89
parent 0 cef349423167
permissions -rw-r--r--
remove old config migrations update import path (ammico to ammicosrv.ammico) move wsgi to be next to manage.py

(function(){
  'use strict';

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

})();