client/app/app_controller.js
author rougeronj
Thu, 21 May 2015 11:07:34 +0200
changeset 88 2db951a4a04c
parent 0 cef349423167
permissions -rw-r--r--
updates dependencies and add main-bower-file to gulpfile to concatenate the vendorJs Refactors gulpfile

(function(){
  'use strict';

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

})();