mirror of https://github.com/Sonarr/Sonarr
Removed ignore relative urls
Replaced play/stop images on Series Editor with Font-Awesome
This commit is contained in:
parent
5220de5c66
commit
57206b7cee
|
@ -1,11 +1,11 @@
|
|||
var seriesId = 0;
|
||||
var saveSeasonIgnoreUrl = '../Command/SaveSeasonIgnore';
|
||||
var saveEpisodeIgnoreUrl = '../Command/SaveEpisodeIgnore';
|
||||
var saveSeasonIgnoreUrl = '/command/saveseasonignore';
|
||||
var saveEpisodeIgnoreUrl = '/command/saveepisodeignore';
|
||||
|
||||
var changeQualityType;
|
||||
var changeQualityData;
|
||||
var changeEpisodeQualityUrl = '../Episode/ChangeEpisodeQuality';
|
||||
var changeSeasonQualityUrl = '../Episode/ChangeSeasonQuality';
|
||||
var changeEpisodeQualityUrl = '/episode/changeepisodequality';
|
||||
var changeSeasonQualityUrl = '/episode/changeseasonquality';
|
||||
|
||||
//Episode Ignore Functions
|
||||
$(".ignoreEpisode").live("click", function () {
|
||||
|
|
|
@ -26,12 +26,12 @@
|
|||
<td>
|
||||
@if (Model.Status == "Ended")
|
||||
{
|
||||
<img src="../../Content/Images/stop.png" width="24" height="24" alt="Ended" title="Ended" />
|
||||
<i class="icon-play" title="Ended"></i>
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
<img src="../../Content/Images/play.png" width="24" height="24" alt="Active" title="Continuing" />
|
||||
<i class="icon-play" title="Continuing"></i>
|
||||
}
|
||||
</td>
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue