HTML5で作ったiPhoneのWebアプリで上下のスクロールを無効にして固定する

http://www.axlight.com/mt/sundayhacking/2014/01/html5iphoneweb.html

<meta name="viewport" content="width=device-width initial-scale=1, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<script>
document.addEventListener('touchmove', function(e) {
  if (window.innerHeight >= document.body.scrollHeight) {
    e.preventDefault();
  }
}, false);
</script>