1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

New: Filter series by type (standard, daily or anime)

This commit is contained in:
Mark McDowall
2014-07-14 23:22:53 -07:00
parent 1368c4376b
commit 0a44744c5e
3 changed files with 39 additions and 1 deletions
+21
View File
@@ -216,6 +216,27 @@ define(
tooltip : 'Ended Only',
icon : 'icon-stop',
callback: this._setFilter
},
{
key : 'standard',
title : '',
tooltip : 'Standard Series Only',
icon : 'icon-nd-standard-series',
callback: this._setFilter
},
{
key : 'daily',
title : '',
tooltip : 'Daily Series Only',
icon : 'icon-nd-daily-series',
callback: this._setFilter
},
{
key : 'anime',
title : '',
tooltip : 'Anime Only',
icon : 'icon-nd-anime',
callback: this._setFilter
}
]
};