themes/iphone/expand.js
author Dan
Mon, 24 Mar 2008 00:12:21 -0400
changeset 9 63a257541313
parent 5 9b96265b5918
permissions -rw-r--r--
Moved all Greyhound output to stderr so it will show up in AmaroK error messages; corrected some HTML bugs in the readme

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