client/app/app_controller.js
author rougeronj
Thu, 23 Apr 2015 18:17:10 +0200
changeset 86 2deead259283
parent 0 cef349423167
permissions -rw-r--r--
add user filter to send bakc only the slides and books of the current user

(function(){
  'use strict';

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

})();