christophwalcher

Results 1 comments of christophwalcher

Would JavaScript interop do the trick? create-elm-app example: ```js elmSpa.ports.urlChange.subscribe(function(title) { window.requestAnimationFrame(function() { document.title = title; document.querySelector( 'meta[name="description"]' ).setAttribute("content", title); }); }); ``` Blog post https://medium.com/@l.mugnaini/single-page-application-boilerplate-for-elm-160bb5f3eec2