mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 21:13:28 -07:00
Fied delete button on series grid
This commit is contained in:
parent
3ce8ffe21f
commit
6f57b83822
1 changed files with 2 additions and 2 deletions
|
@ -91,8 +91,8 @@ $(".editButton").live('click', function () {
|
||||||
|
|
||||||
$(".deleteButton").live('click', function () {
|
$(".deleteButton").live('click', function () {
|
||||||
//Get the SeriesId and Title
|
//Get the SeriesId and Title
|
||||||
var seriesId = parseInt($(this).attr("value"));
|
var seriesId = parseInt($(this).attr("data-series-id"));
|
||||||
var title = $(this).attr("rel");
|
var title = $(this).attr("data-series-title");
|
||||||
|
|
||||||
//Fill in the view
|
//Fill in the view
|
||||||
$('#seriesDelete').children('.seriesId').val(seriesId);
|
$('#seriesDelete').children('.seriesId').val(seriesId);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue