68 was merged without the inclusion of one cosmetic feature: scrolling the comment in question into view if it's outside the viewing pane. Seems like Elm doesn't have native capacity to do this, so will need to port out to js to get this done. However, it's not as straightforward as calling document.getElementById(myId).scrollIntoView() from app.js, something more in line with what Dom.Scroll does is needed.
68 was merged without the inclusion of one cosmetic feature: scrolling the comment in question into view if it's outside the viewing pane. Seems like Elm doesn't have native capacity to do this, so will need to port out to js to get this done. However, it's not as straightforward as calling
document.getElementById(myId).scrollIntoView()
fromapp.js
, something more in line with whatDom.Scroll
does is needed.