Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/6f57b838229104304303404707f7283a661f00ca You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fied delete button on series grid

pull/19/head
Mark McDowall 13 years ago
parent 3ce8ffe21f
commit 6f57b83822

@ -91,8 +91,8 @@ $(".editButton").live('click', function () {
$(".deleteButton").live('click', function () {
//Get the SeriesId and Title
var seriesId = parseInt($(this).attr("value"));
var title = $(this).attr("rel");
var seriesId = parseInt($(this).attr("data-series-id"));
var title = $(this).attr("data-series-title");
//Fill in the view
$('#seriesDelete').children('.seriesId').val(seriesId);

Loading…
Cancel
Save