mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-22 22:15:17 -04:00
Fixed Quality Toggling on AddSeries.
Fixed Watermark for AddSeries controls.
This commit is contained in:
@@ -14,7 +14,7 @@ var rootListUrl = '../AddSeries/RootList';
|
|||||||
$(".masterQualitySelector").live('change', function () {
|
$(".masterQualitySelector").live('change', function () {
|
||||||
|
|
||||||
var profileId = $(this).val();
|
var profileId = $(this).val();
|
||||||
$("#existingSeriesTab").find(".qualitySelector").each(function () {
|
$("#existingSeries").find(".qualitySelector").each(function () {
|
||||||
$(this).val(profileId);
|
$(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...');
|
||||||
|
});
|
||||||
@@ -10,11 +10,3 @@
|
|||||||
<button id="saveNewSeries">
|
<button id="saveNewSeries">
|
||||||
Add</button>
|
Add</button>
|
||||||
</div>
|
</div>
|
||||||
<br />
|
|
||||||
|
|
||||||
<script type="text/javascript">
|
|
||||||
$(document).ready(function () {
|
|
||||||
//AddNew
|
|
||||||
$('#newSeriesLookup').watermark('Title of the series you want to add...');
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
@@ -8,9 +8,3 @@
|
|||||||
</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>
|
|
||||||
|
|||||||
Reference in New Issue
Block a user