Yesterday I found ember-idx-modal (Bootstrap integration) is broken for 1.13.3, which I reported at github.
The reason is Ember.View.views
doesn’t exist (yields undefined
). I fixed this by replacing View.views[id] with this._viewRegistry[id]
, but I’m not sure why this is happening.
Documentation says View.views
is a private static property, so what should I replace that with? view._registry (which is not even documented)? this.container.lookup('-view-registry')
?
Thanks for your help.