1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-22 09:21:43 +02:00
Radarr/NzbDrone.Web/Views/AddSeries/RootDir.cshtml
2011-12-07 21:44:36 -08:00

17 lines
431 B
Plaintext

<h2>
Manage Root Folders
</h2>
<span>
<input id="rootDirInput" class="folderLookup" type="text" style="width: 400px" />
<button id="saveDir">
Add</button>
</span><span id="rootDirs">
@{Html.RenderAction("RootList");}
</span>
<script language="javascript">
$(document).ready(function () {
//RootDir
$('#rootDirInput').watermark('Enter your new root folder path...');
});
</script>