remove "comment" from the model. Copy the 'comment' field of Jamespot in the 'description' field of the model instead
(function(){
'use strict';
angular.module('ammicoSlideshow',['ngResource', 'ngRoute', 'ui.bootstrap'])
.controller('slideshowCtrl', function($scope, ammicoApi, $routeParams){
$scope.slideshow = ammicoApi.booksSlides.query({idBook:$routeParams.iSlide, format:'json'}, function(data){
data = ammicoApi.sanitizeUrls(data);
});
$scope.book = ammicoApi.book.get({idBook:$routeParams.iSlide, format:'json'});
});
})();