removed console.log

This commit is contained in:
Bala Clark 2011-01-06 18:22:48 +01:00
parent b492474fb0
commit becf6be936

View file

@ -108,9 +108,7 @@ function ComicBook(id, srcs, opts) {
**/
function setLastPage() {
if (!options.data.comicId) { throw 'options.data.comicId is not set.'; }
$.get('/comic/setlastpage', { page: pointer+1, comic: options.data.comicId }, function(error){
console.log(error);
});
$.get('/comic/setlastpage', { page: pointer+1, comic: options.data.comicId });
}
/**