mirror of https://github.com/Radarr/Radarr
New: Indexer name is displayed on mouse over of image (History)
New: Search by indexer name (History)
This commit is contained in:
parent
89691f923b
commit
8fa145b2c3
|
@ -220,6 +220,7 @@
|
|||
</Content>
|
||||
<Content Include="Files\RSS\wombles.xml">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
<SubType>Designer</SubType>
|
||||
</Content>
|
||||
<Content Include="Files\RSS\filesharingtalk.xml">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
|
|
|
@ -57,8 +57,14 @@
|
|||
"iDisplayLength": 20,
|
||||
"sPaginationType": "four_button",
|
||||
"aoColumns": [
|
||||
{ sWidth: '20px', "bSortable": false, "mDataProp": "Indexer", "fnRender": function (row) {
|
||||
return "<img src='/Content/Images/Indexers/" + row.aData['Indexer'] + ".png' alt=" + row.aData["Indexer"] + ">";
|
||||
{
|
||||
sWidth: '20px', "bSortable": false, "mDataProp": function (source, type, val) {
|
||||
// 'display' and 'filter' use the image
|
||||
if (type === 'display' || type === 'filter') {
|
||||
return "<img src='/Content/Images/Indexers/" + source['Indexer'] + ".png' alt='" + source["Indexer"] + "' title='" + source["Indexer"] + "'>";
|
||||
}
|
||||
// 'sort' and 'type' both just use the raw data
|
||||
return source["Indexer"];
|
||||
}
|
||||
}, //Image
|
||||
{ sWidth: 'auto', "mDataProp": function (source, type, val) {
|
||||
|
@ -97,7 +103,8 @@
|
|||
"fnRender": function(row) {
|
||||
var result = "<b>Overview: </b>" + row.aData["EpisodeOverview"] + "<br/>" +
|
||||
"<b>NZB Title: </b>" + row.aData["NzbTitle"] + "<br/>" +
|
||||
"<b>Proper: </b>" + row.aData["IsProper"];
|
||||
"<b>Proper: </b>" + row.aData["IsProper"] + "<br/>" +
|
||||
"<b>Indexer: </b>" + row.aData["Indexer"];
|
||||
return result;
|
||||
}
|
||||
} //Details
|
||||
|
|
Loading…
Reference in New Issue