Is it possible for ember (specifically the application template) to operate inside the head tag in order to dynamically change things like the title tag, meta tags, external css stylesheets and the favicon?
If so, what would be a clean way of doing this?
<html ng-app>
– Donutdocument.getElementsByTag("head").innerHTML += "<meta content = ''/>";
this can be achieved with raw JavaScript so why to rely on any library :) – MarmiK