mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -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 () {
|
||||
|
||||
var profileId = $(this).val();
|
||||
$("#existingSeriesTab").find(".qualitySelector").each(function () {
|
||||
$("#existingSeries").find(".qualitySelector").each(function () {
|
||||
$(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...');
|
||||
});
|
||||
Reference in New Issue
Block a user