Fixed grid ajax links.

This commit is contained in:
Mark McDowall 2012-02-06 22:47:02 -08:00
commit b0c2807b56
3 changed files with 8 additions and 3 deletions

View file

@ -1,5 +1,8 @@
/* Click on row, show details */
$('.seriesTable a').live('click', function (event) {
if ($(this).attr('onclick'))
return;
event.preventDefault();
var link = $(this).attr('href');
window.location = link;