themes/iphone/expand.js
author Dan
Sun, 23 Nov 2008 23:49:20 -0500
changeset 59 a4ca1e7c0073
parent 5 9b96265b5918
permissions -rw-r--r--
Fixed position of floating volume div

function expand_track(tid)
{
  var div = document.getElementById('track_inner_' + tid);
  if ( div.style.display == 'block' )
  {
    div.style.display = 'none';
  }
  else
  {
    div.style.display = 'block';
  }
}