Stopped links in grid triggering detail view in chrome.

Fixed grid header in FF.
This commit is contained in:
Mark McDowall 2012-02-05 23:47:10 -08:00
commit b9d227d162
2 changed files with 45 additions and 43 deletions

View file

@ -1,8 +1,9 @@
/* Click on row, show details */
$('.seriesTable a').live('click', function () {
$('.seriesTable a').live('click', function (event) {
event.preventDefault();
var link = $(this).attr('href');
window.location = link;
event.preventDefault();
event.stopPropegation();
});
$('.seriesTable tr td:not(:last-child)').live('click', function () {