remove "comment" from the model. Copy the 'comment' field of Jamespot in the 'description' field of the model instead
(function(){
'use strict';
angular.module('ammico')
.controller('routeClassCtrl', function($scope, $location) {
$scope.isActive = function(route) {
return route === $location.path();
};
});
})();