themes/iphone/scrollfix.js
author Dan
Mon, 31 Mar 2008 07:40:30 -0400
changeset 14 7a1573676cc4
parent 4 cde92f6ec29f
permissions -rw-r--r--
Added jump-to-current function in iphone theme; fixed md5('') call if unique IDs empty in playlist XML file

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;