Skip to content

Commit

Permalink
Homepage: Avoid subframe scrolling on to-do pages
Browse files Browse the repository at this point in the history
A simple (and crude) solution for the annoying 2-level scrolling:
just set a tall-enough height manually for the iframe. Having
a bit of extra space is much less of a problem than suffering
the flaky scrolling.
  • Loading branch information
skyjake committed Jul 26, 2012
1 parent 09e879c commit e8fe0d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/plugins/pages/html/multiplayer_issues.html
@@ -1,2 +1,2 @@
<p>This is a list of known multiplayer issues in the latest build of the Doomsday Engine. Improving multiplayer functionality and gameplay experience is a longer term goal for the deng team.</p>
<iframe class="todo_iframe" src="https://docs.google.com/document/pub?id=1TTVEjjROgugFQDKUtazD9lTj6T33I4paZyfjVM15qzU&amp;embedded=true"></iframe>
<iframe class="todo_iframe" style="height:300em;" src="https://docs.google.com/document/pub?id=1TTVEjjROgugFQDKUtazD9lTj6T33I4paZyfjVM15qzU&amp;embedded=true"></iframe>
2 changes: 1 addition & 1 deletion web/plugins/pages/html/stable_to-do_list.html
@@ -1,2 +1,2 @@
<p>This to-do list is continually being updated by the deng team members. It contains items that are currently being worked on. See the <a href="http://dengine.net/dew/index.php?title=Roadmap">Roadmap</a> for longer-term plans.</p>
<iframe class="todo_iframe" src="https://docs.google.com/document/pub?id=1hOlSSZkUHFfkxdeejyja844m80H-gHtUd1eVUN2VdCk&amp;embedded=true"></iframe>
<iframe class="todo_iframe" style="height:200em;" src="https://docs.google.com/document/pub?id=1hOlSSZkUHFfkxdeejyja844m80H-gHtUd1eVUN2VdCk&amp;embedded=true"></iframe>

0 comments on commit e8fe0d0

Please sign in to comment.