mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 23:45:46 +02:00
Using more html5 data attributes
This commit is contained in:
@@ -71,7 +71,7 @@ $(function () {
|
||||
// Declare a function on the chat hub so the server can invoke it
|
||||
signalRProvider.updatedStatus = function (data) {
|
||||
var imageSrc = '../../Content/Images/' + data.EpisodeStatus + '.png';
|
||||
var row = $('tr.episodeId_' + data.EpisodeId);
|
||||
var row = $('[data-episode-id="' + data.EpisodeId + '"]');
|
||||
|
||||
if (row.length == 0)
|
||||
return;
|
||||
|
Reference in New Issue
Block a user