the plan is to have an application running on 2 or more displays. There will be a “main” screen and “sub”-screens. Sub-screens should access the main-screens store and share their meta-data (scroll-positions, paging-info, filters, etc.).
The current version performs good in chrome/firefox, but internet explorer has some problems with windows that share objects (null-pointer exceptions, denied permissions etc.).
Has anyone here tried the same, having a multi-screen Ember-App that shares state between screens/displays - running in internet explorer?
I use localStorage for that often enough that I created an addon for it ember-storage - npm
In particular I use it to store device specific preferences (sidebar hidden/displayed, etc). Inject it onto a component (for example) and then you can do this.set('storage.showMenu', true); and {{ storage.showMenu }}. I can’t guarantee IE support as my main targets are modern browsers
Looking into this (apparently years later) and found this online ( Treehouse: HTML, CSS, PHP, JS, and Python Development Courses ) but I don’t have a treehouse account. Can anyone point me to resources for using Modern Ember (3.1.x) with multi-screen environments?