mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-25 01:06:30 +00:00
Adding/Removing rootDirs will refresh UI properly.
This commit is contained in:
parent
b3d1b8c47e
commit
e306f0f817
2 changed files with 4 additions and 4 deletions
|
@ -45,7 +45,7 @@ $(".addExistingButton").live('click', function () {
|
|||
|
||||
function reloadExistingSeries() {
|
||||
$.get(existingSeriesUrl, function (data) {
|
||||
$('#existingSeriesTab').html(data);
|
||||
$('#existingSeries').html(data);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -10,12 +10,12 @@ Add Series
|
|||
<div class="jquery-accordion">
|
||||
<h3>
|
||||
<a href="#">Add New Series</a></h3>
|
||||
<div>
|
||||
<div id="addNewSeries">
|
||||
@{ Html.RenderAction("AddNew", "AddSeries"); }
|
||||
</div>
|
||||
<h3>
|
||||
<a href="#">Add Series Already on Disk</a></h3>
|
||||
<div>
|
||||
<div id="existingSeries">
|
||||
@{ Html.RenderAction("ExistingSeries", "AddSeries"); }
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Loading…
Reference in a new issue