We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In 1.5, it was possible to:
var a = Ember.A([]); var MyArrayMixin = Ember.Mixin.create({ contains: function(){ return this._super(); } }); MyArrayMixin.apply(a); Object.freeze(a); a.contains();
By 1.6, this raised an exception about modifying the frozen object. The exception is raised by __nextSuper, though __nextSuper was already in 1.5.
__nextSuper
http://emberjs.jsbin.com/mixowa/1/edit?html,js,output
Replaces #5324 as a general case, could be addressed by #5430. May ref #5463.
The text was updated successfully, but these errors were encountered:
Issue still exists in 1.8.0. @mixonic any updates?
Sorry, something went wrong.
not yet
We have removed the chances dramatically
Fixed by #12062.
Demo: http://emberjs.jsbin.com/yonuvi/edit?html,js,output
No branches or pull requests
In 1.5, it was possible to:
By 1.6, this raised an exception about modifying the frozen object. The exception is raised by
__nextSuper
, though__nextSuper
was already in 1.5.http://emberjs.jsbin.com/mixowa/1/edit?html,js,output
Replaces #5324 as a general case, could be addressed by #5430. May ref #5463.
The text was updated successfully, but these errors were encountered: