themes/iphone/scrollfix.js
author Dan
Sun, 04 Jan 2009 22:56:57 -0500
changeset 67 c4aefad02ce4
parent 4 cde92f6ec29f
permissions -rw-r--r--
WebServer now does not attempt to destruct if threader is not up

function getScrollOffset()
{
  var position;
  if (self.pageYOffset)
  {
    position = self.pageYOffset;
  }
  else if (document.documentElement && document.documentElement.scrollTop)
  {
    position = document.documentElement.scrollTop;
  }
  else if (document.body)
  {
    position = document.body.scrollTop;
  }
  return position;
}

var fix_scroll = function()
{
  var div = document.getElementById('playbar');
  div.style.top = ( String(getScrollOffset()) ) + 'px';
}

window.onscroll = fix_scroll;