themes/iphone/expand.js
author Dan
Sun, 23 Nov 2008 23:53:29 -0500
changeset 60 acc7755e15b6
parent 5 9b96265b5918
permissions -rw-r--r--
...it should be cool with scrolling now.

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';
  }
}