mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
Stopped links in grid triggering detail view in chrome.
Fixed grid header in FF.
This commit is contained in:
parent
aba44fb121
commit
b9d227d162
2 changed files with 45 additions and 43 deletions
|
@ -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 () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue