mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-25 01:06:30 +00:00
Fixed add series watermarks
This commit is contained in:
parent
5e386a2bc7
commit
54dd817700
3 changed files with 7 additions and 8 deletions
|
@ -125,9 +125,3 @@ $('#quickAddNew').live('click', function () {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
//On load
|
|
||||||
jQuery(document).ready(function () {
|
|
||||||
//RootDir
|
|
||||||
$('#rootDirInput').watermark('Enter your new root folder path...');
|
|
||||||
});
|
|
|
@ -1,5 +1,4 @@
|
||||||
@using System.Collections
|
@using System.Collections
|
||||||
@using NzbDrone.Web.Models
|
|
||||||
@{ Layout = null; }
|
@{ Layout = null; }
|
||||||
<div>
|
<div>
|
||||||
<div>
|
<div>
|
||||||
|
@ -14,7 +13,7 @@
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
jQuery(document).ready(function () {
|
$(document).ready(function () {
|
||||||
//AddNew
|
//AddNew
|
||||||
$('#newSeriesLookup').watermark('Title of the series you want to add...');
|
$('#newSeriesLookup').watermark('Title of the series you want to add...');
|
||||||
});
|
});
|
||||||
|
|
|
@ -8,3 +8,9 @@
|
||||||
</span><span id="rootDirs">
|
</span><span id="rootDirs">
|
||||||
@{Html.RenderAction("RootList");}
|
@{Html.RenderAction("RootList");}
|
||||||
</span>
|
</span>
|
||||||
|
<script language="javascript">
|
||||||
|
$(document).ready(function () {
|
||||||
|
//RootDir
|
||||||
|
$('#rootDirInput').watermark('Enter your new root folder path...');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue