success: function()

in assets/www/scripts/photark_flickr.js [47:67]


		success: function(data) {
					console.log(data);
					if(data.comments.comment===undefined)
					{
						comments="No comments";
					}
					else
					{
						data.comments.comment.forEach(function(item){
							if(item.id===undefined)
							{
								comments='No comments';
							}
							else
							{
								comments+=item.authorname+": "+item._content+"\r\n";
								console.log(comments);
							}
						});
					}
				},