Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/7edde4a2421346f95c00a4642fdcfd0b8d5a5c8f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
12 additions and
16 deletions
@ -14,7 +14,7 @@ var rootListUrl = '../AddSeries/RootList';
$ ( ".masterQualitySelector" ) . live ( 'change' , function ( ) {
var profileId = $ ( this ) . val ( ) ;
$ ( "#existingSeries Tab ") . find ( ".qualitySelector" ) . each ( function ( ) {
$ ( "#existingSeries ") . find ( ".qualitySelector" ) . each ( function ( ) {
$ ( this ) . val ( profileId ) ;
} ) ;
} ) ;
@ -125,3 +125,13 @@ $('#quickAddNew').live('click', function () {
}
} ) ;
} ) ;
//Watermark
$ ( '#rootDirInput' ) . livequery ( function ( ) {
$ ( '#rootDirInput' ) . watermark ( 'Enter your new root folder path...' ) ;
} ) ;
$ ( '#newSeriesLookup' ) . livequery ( function ( ) {
$ ( '#newSeriesLookup' ) . watermark ( 'Title of the series you want to add...' ) ;
} ) ;
@ -9,12 +9,4 @@
@Html.DropDownList("qualityList", (SelectList)ViewData["QualityProfiles"], new { @class = "qualitySelector" })
<button id="saveNewSeries">
Add</button>
</div>
<br />
<script type="text/javascript">
$(document).ready(function () {
//AddNew
$('#newSeriesLookup').watermark('Title of the series you want to add...');
});
</script>
</div>
@ -8,9 +8,3 @@
</span><span id="rootDirs">
@{Html.RenderAction("RootList");}
</span>
<script language="javascript">
$(document).ready(function () {
//RootDir
$('#rootDirInput').watermark('Enter your new root folder path...');
});
</script>