client/app/app_controller.js
author rougeronj
Tue, 31 Mar 2015 12:25:19 +0200
changeset 48 c17f2b37b032
parent 0 cef349423167
permissions -rw-r--r--
server send now images field in json instead of previous firstImg

(function(){
  'use strict';

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

})();