mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 21:43:33 -07:00
New: NzbInfoUrl added to history (link to NZB info at indexer) - Not supported for Womble's.
This commit is contained in:
parent
b314ff5e82
commit
5aff4ab240
12 changed files with 639 additions and 462 deletions
|
@ -5,7 +5,13 @@ $(document).on('click', '.seriesTable a, .dataTable a', function (event) {
|
|||
|
||||
event.preventDefault();
|
||||
var link = $(this).attr('href');
|
||||
window.location = link;
|
||||
|
||||
if ($(this).attr('target') === '_blank')
|
||||
window.open(link);
|
||||
|
||||
else
|
||||
window.location = link;
|
||||
|
||||
event.stopPropegation();
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue