mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-10 11:10:40 +02:00
Fixed Series/Details calling script before jQuery is loaded.
This commit is contained in:
parent
ef40831c24
commit
d3d2950a88
@ -3,7 +3,6 @@
|
||||
@section TitleContent{
|
||||
@Model.Title
|
||||
}
|
||||
<script src="../../Scripts/NzbDrone/seriesDetails.js" type="text/javascript"></script>
|
||||
<link href="../../Content/Grid.css" rel="stylesheet" type="text/css" />
|
||||
<style>
|
||||
.seasonToggleTopGroup
|
||||
@ -117,7 +116,6 @@
|
||||
.Width(80);
|
||||
})
|
||||
.DetailView(detailView => detailView.ClientTemplate("<div><#= Overview #> </br><#= Path #> </div>"))
|
||||
//.Sortable(rows => rows.OrderBy(epSort => epSort.Add(c => c.EpisodeNumber).Descending()).Enabled(false))
|
||||
.Footer(true)
|
||||
.DataBinding(
|
||||
d =>
|
||||
@ -133,6 +131,7 @@
|
||||
.Render();
|
||||
}
|
||||
@section Scripts{
|
||||
<script src="../../Scripts/NzbDrone/seriesDetails.js" type="text/javascript"></script>
|
||||
<script type="text/javascript">
|
||||
seriesId = @Model.SeriesId;
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user