mirror of https://github.com/Radarr/Radarr
48 lines
1.3 KiB
Plaintext
48 lines
1.3 KiB
Plaintext
<span>
|
|
<input id="rootDirInput" type="text" style="width: 400px" />
|
|
<button id="saveDir">
|
|
Add</button>
|
|
</span>
|
|
<span id="rootDirs">
|
|
@{Html.RenderAction("RootList");}
|
|
</span>
|
|
<script type="text/javascript">
|
|
|
|
jQuery(document).ready(function() {
|
|
$.ajaxSetup({
|
|
cache: false
|
|
});
|
|
|
|
bindFolderAutoComplete('#rootDirInput');
|
|
|
|
$('#rootDirInput').watermark('Start typing to add new root folder...');
|
|
|
|
$('#rootDirs .actionButton img').live('click',
|
|
function(image) {
|
|
var path = $(image.srcElement).attr('id');
|
|
$.post('@Url.Action("DeleteRootDir", "AddSeries")', { Path: path }, function() {
|
|
refreshRoot();
|
|
});
|
|
});
|
|
|
|
$('#saveDir').click(saveRootDir);
|
|
|
|
function saveRootDir() {
|
|
var path = $("#rootDirInput").val();
|
|
$.post('@Url.Action("SaveRootDir", "AddSeries")', { Path: path }, function() {
|
|
refreshRoot();
|
|
$("#rootDirInput").val('');
|
|
});
|
|
|
|
}
|
|
|
|
|
|
function refreshRoot() {
|
|
$.get('@Url.Action("RootList", "AddSeries")', function(data) {
|
|
$('#rootDirs').html(data);
|
|
});
|
|
}
|
|
});
|
|
|
|
</script>
|