client/app/app_controller.js
author ymh <ymh.work@gmail.com>
Mon, 08 Jun 2015 00:37:27 +0200
changeset 128 d4e5954f2ad4
parent 0 cef349423167
permissions -rw-r--r--
execfile in python 3 and 2

(function(){
  'use strict';

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

})();