mitchlloyd / ember-screen

A screen size service for Ember
MIT License
50 stars 10 forks source link

Deprecated test stub syntax in README #7

Closed chriskrycho closed 6 years ago

chriskrycho commented 6 years ago

The README has this:

let screen = this.application.__container__.lookup('service:screen');

That approach is long deprecated; it should be this:

let screen = this.owner.lookup('service:screen');
mitchlloyd commented 6 years ago

End of an era.

Thanks for reporting.