themes/iphone/expand.js
author Dan
Sun, 23 Mar 2008 22:44:52 -0400
changeset 5 9b96265b5918
permissions -rw-r--r--
Relicensed to GPLv2. Previous revisions should not be downloaded as they do not contain copies of appropriate licenses, which will be added in a later commit. Completed interface for mobile devices.

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