mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
Using more html5 data attributes
This commit is contained in:
parent
27d9592b41
commit
a197316640
4 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue