[model,bugfix][s]: correction for change introduced in last commit to move summary method from Record to Dataset.recordSummary.

This commit is contained in:
Rufus Pollock
2012-07-03 15:35:40 +01:00
parent 40ed25c7b2
commit 202ca2dce0
3 changed files with 6 additions and 5 deletions

View File

@@ -102,7 +102,7 @@ my.Timeline = Backbone.View.extend({
"startDate": start,
"endDate": end,
"headline": String(record.get('title') || ''),
"text": record.get('description') || record.summary()
"text": record.get('description') || this.model.recordSummary(record)
};
return tlEntry;
} else {