« All deprecation guides
Deprecation Guide for Ember CreateWithMixins
Ember.Object.createWithMixins
method has been deprecated. Instead call Ember.Object.create
or Ember.Object.extend
.
var obj = Ember.Object.createWithMixins({
});
Replace with code above with:
var obj = Ember.Object.extend({
}).create();