I have the following code:
var msg = this.store.createRecord({text:\'first title\', createdAt: \"2015-06-22T20:06:06+03:00\" }) this.get(\'model.content\').push
Before 1.13:
this.get('content').pushObjects(messages);
After 1.13:
messages.forEach(functio(message) { this.get('model.content').pushObject(message._internalModel); });