mirror of
https://github.com/Radarr/Radarr
synced 2025-02-13 01:55:22 +00:00
Fixed Series/Details calling script before jQuery is loaded.
This commit is contained in:
parent
ef40831c24
commit
d3d2950a88
1 changed files with 1 additions and 2 deletions
|
@ -3,7 +3,6 @@
|
||||||
@section TitleContent{
|
@section TitleContent{
|
||||||
@Model.Title
|
@Model.Title
|
||||||
}
|
}
|
||||||
<script src="../../Scripts/NzbDrone/seriesDetails.js" type="text/javascript"></script>
|
|
||||||
<link href="../../Content/Grid.css" rel="stylesheet" type="text/css" />
|
<link href="../../Content/Grid.css" rel="stylesheet" type="text/css" />
|
||||||
<style>
|
<style>
|
||||||
.seasonToggleTopGroup
|
.seasonToggleTopGroup
|
||||||
|
@ -117,7 +116,6 @@
|
||||||
.Width(80);
|
.Width(80);
|
||||||
})
|
})
|
||||||
.DetailView(detailView => detailView.ClientTemplate("<div><#= Overview #> </br><#= Path #> </div>"))
|
.DetailView(detailView => detailView.ClientTemplate("<div><#= Overview #> </br><#= Path #> </div>"))
|
||||||
//.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.EpisodeNumber).Descending()).Enabled(false))
|
|
||||||
.Footer(true)
|
.Footer(true)
|
||||||
.DataBinding(
|
.DataBinding(
|
||||||
d =>
|
d =>
|
||||||
|
@ -133,6 +131,7 @@
|
||||||
.Render();
|
.Render();
|
||||||
}
|
}
|
||||||
@section Scripts{
|
@section Scripts{
|
||||||
|
<script src="../../Scripts/NzbDrone/seriesDetails.js" type="text/javascript"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
seriesId = @Model.SeriesId;
|
seriesId = @Model.SeriesId;
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue