Click row to see the details of that episode.

Alternate rows are coloured (along with the details)
This commit is contained in:
Mark McDowall 2012-02-04 12:08:39 -08:00 committed by kay.one
commit a7c90351ac
3 changed files with 21 additions and 2 deletions

View file

@ -143,4 +143,9 @@ function saveEpisodeIgnore(episodeId, ignored) {
alert("Sorry! We could save the ignore settings for Episode: " + episodeId + " at this time. " + error);
}
});
}
}
/* Click on row, show details */
$('.seriesTable tr').live('click', function() {
$(this).next('.detail-view').toggle();
});