Hi everyone, I’m a front end dev that is a Ember noob and i’v got a couple of questions. Im looking to develop a web app with Ember 2.0 but it must support IE8 which Ember dropped support for. Iv been watching and reading presentations on Fastboot and it got me thinking, why can’t I just use fastboot to deliver IE8 pure html pages? Im thinking I would wrap the ember.js script in an IE conditional statement. If the browser is greater than IE8 it will make an ajax call to the api and update the DOM using json after the initial load, if it is IE8 there will be no ember.js so it will request HTML from the server again.
Fastboot → HTML → /posts/ → Fastboot → HTML
Fastboot → HTML → /posts/ → json → Ember update DOM
Is something like this feasible?