Chrome、FF、Safari などで正常に動作します。
JSON応答は問題ないようです...コードで行っていること、または行っていないことと関係があると思います:
var getPhotos = function() {
$.ajax({
url: 'https://api.parse.com/1/classes/Photo',
headers: {
'X-Parse-Application-Id': config.parseAppId,
'X-Parse-REST-API-Key': config.parseRestKey
},
type: 'GET',
dataType: 'json',
data: {
'where': '{"event": "' + <%= @event.id %> + '"}',
'order': '-createdAt',
'limit': '12'
},
success: function (data) {
$('#community-gallery').children().remove();
data.results.forEach(function (photo) {
$('#community-gallery').append($('<a href="'+photo.file.url+'" rel="gallery"><img src="'+photo.file.url+'" width="130" style="padding: 0px 15px 15px 0;" /></a>'));
})
},
error: function () {
alert('Problem reading photos');
}
});
};