Pressing spacebar to advance the text also scrolls the page for me. Adding something like this to the source would prevent that while the game frame is in focus:
document.onkeydown = function(k) {k.preventDefault();}
document.onkeyup = function(k) {k.preventDefault();}