次のエラーが表示されます。
Uncaught SyntaxError: Unexpected token ( /timeline/scripts/collections/events.js?bust=1365755363650:1
/timeline/scripts/collections/events.jsは次のとおりです。
function () {
return Backbone.Collection.extend({
model: Event
, parse: function(data) {
var parsed = [];
$(data).find('Event').each(function(index) {
parsed.push({
title: $(this).find('title').text()
, date: $(this).find('date').text()
, content: $(this).find('content').text()
});
});
return parsed;
}
, fetch: function(options) {
options = options || {};
options.dataType = "xml";
Backbone.Collection.prototype.fetch.call(this, options);
}
});
};
なんらかの理由で窒息してfunction () {
いますが、その理由はわかりません。これが文書全体です。誰がこれの何が悪いのか説明できますか?