Skip to content

Instantly share code, notes, and snippets.

@jackkitley
Created January 24, 2013 09:18
Show Gist options
  • Save jackkitley/4619021 to your computer and use it in GitHub Desktop.
Save jackkitley/4619021 to your computer and use it in GitHub Desktop.
New ember js pre 4 problem
App.DashboardController = Em.ArrayController.extend({
content: [],
contentRecent: Em.ArrayController.create({
content: [],
count: Em.computed(function() {
return this.get('content').length;
}).property('content.@each')
}),
@zeppelin
Copy link

Fuck, forgot the -Controller from the RecentItems. Of course, it's RecentItemsController...
Updated the example.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment