mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
#680 - begin resolution feature
This commit is contained in:
parent
9ab4adcd33
commit
807141cbce
3 changed files with 66 additions and 28 deletions
|
@ -99,10 +99,7 @@
|
|||
|
||||
var color = null;
|
||||
|
||||
if (status == 'SkippedTrial') {
|
||||
status = 'Trial';
|
||||
}
|
||||
else if (status == 'SkippedExisting') {
|
||||
if (status == 'SkippedExisting') {
|
||||
status = 'Skipped';
|
||||
}
|
||||
else if (status == 'Failure') {
|
||||
|
@ -158,7 +155,7 @@
|
|||
html += '<td class="organizerButtonCell">';
|
||||
|
||||
|
||||
if (item.Status == 'SkippedTrial' || item.Status == 'SkippedExisting') {
|
||||
if (item.Status == 'SkippedExisting') {
|
||||
html += '<button data-resultid="' + item.Id + '" type="button" data-inline="true" data-icon="action" data-mini="true" data-iconpos="notext" class="btnProcessResult organizerButton" title="Organize File">Process</button>';
|
||||
} else {
|
||||
html += '<button style="visibility:hidden;" type="button" data-inline="true" data-icon="info" data-mini="true" data-iconpos="notext" class="organizerButton"></button>';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue