evancz / elm-todomvc

The TodoMVC app written in Elm, nice example for beginners.
http://evancz.github.io/elm-todomvc/
BSD 3-Clause "New" or "Revised" License
1.22k stars 329 forks source link

Elements in a long list get hidden #12

Closed mcclellanmj closed 9 years ago

mcclellanmj commented 9 years ago

When you enter a lot of items into the list, more than a screenful you can't scroll down to view them. image

evancz commented 9 years ago

There are two possible fixes here:

  1. Embed all of the HTML in an extra div that has the appropriate scroll settings
  2. Make it so Html can flow through main.

Route 2 is a concrete goal I have for the next release and it's the "real answer" so I'm going to go for that.

evancz commented 9 years ago

Fixed with Elm Platform 0.14.1!