mirror of
https://github.com/lidarr/Lidarr
synced 2025-02-22 14:00:42 +00:00
Add existing series won't add an invalid series (ID of zero, or blank title). It will show a UI alert instead.
This commit is contained in:
parent
1cbb3e3601
commit
0e246b2cd9
1 changed files with 17 additions and 2 deletions
|
@ -27,6 +27,17 @@ $(".addExistingButton").live('click', function () {
|
|||
|
||||
var path = root.find(".seriesPathValue Label").text();
|
||||
|
||||
if (seriesId === 0 || title.length === 0) {
|
||||
$.gritter.add({
|
||||
title: 'Failed',
|
||||
text: 'Invalid Series Information for \'' + path + '\'',
|
||||
image: '../../content/images/error.png',
|
||||
class_name: 'gritter-fail'
|
||||
});
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
$.ajax({
|
||||
type: "POST",
|
||||
url: addSeriesUrl,
|
||||
|
@ -149,9 +160,13 @@ $('#quickAddNew').live('click', function () {
|
|||
|
||||
//Watermark
|
||||
$('#rootDirInput').livequery(function () {
|
||||
$('#rootDirInput').watermark('Enter your new root folder path...');
|
||||
$(this).watermark('Enter your new root folder path...');
|
||||
});
|
||||
|
||||
$('#newSeriesLookup').livequery(function () {
|
||||
$('#newSeriesLookup').watermark('Title of the series you want to add...');
|
||||
$(this).watermark('Title of the series you want to add...');
|
||||
});
|
||||
|
||||
$('.existingSeriesContainer .seriesLookup').livequery(function () {
|
||||
$(this).watermark('Please enter the series title...');
|
||||
});
|
Loading…
Reference in a new issue