How i can use ArrayController in Ember.js 1.0pre?
From documentation:
MyApp.listController = Ember.ArrayController.create();
raises this:
TypeError: a[c].create is not a function
If i replace create
with extend
, it rises:
TypeError: b.addArrayObserver is not a function
Thanks!