Skip to content

Instantly share code, notes, and snippets.

@riklaunim
Created April 8, 2014 15:07
Show Gist options
  • Save riklaunim/10139310 to your computer and use it in GitHub Desktop.
Save riklaunim/10139310 to your computer and use it in GitHub Desktop.
MyApp.Offer = DS.Model.extend({
duplicates: DS.hasMany('offer', {async: true}),
....
});
//IE9: SCRIPT5022: Error: Assertion Failed: TypeError: Unable to set value of the property 'store': object is null or undefined ember.js, line 73 character 5
MyApp.Offer = DS.Model.extend({
duplicates: DS.attr(),
....
});
//IE9: ok :)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment