mirror of https://github.com/Sonarr/Sonarr
Fixed AddSeries watermarks.
This commit is contained in:
parent
8d0cdf272c
commit
59d4ae6219
|
@ -48,8 +48,6 @@ function reloadExistingSeries() {
|
||||||
}
|
}
|
||||||
|
|
||||||
//RootDir
|
//RootDir
|
||||||
//$('#rootDirInput').watermark('Start typing to add new root folder...');
|
|
||||||
|
|
||||||
$('#rootDirs .actionButton img').live('click', function (image) {
|
$('#rootDirs .actionButton img').live('click', function (image) {
|
||||||
var path = $(image.target).attr('id');
|
var path = $(image.target).attr('id');
|
||||||
$.post(deleteRootDirUrl, { Path: path }, function () {
|
$.post(deleteRootDirUrl, { Path: path }, function () {
|
||||||
|
@ -79,9 +77,6 @@ function refreshRoot() {
|
||||||
|
|
||||||
|
|
||||||
//AddNew
|
//AddNew
|
||||||
//$('#newSeriesPath').watermark('Path for the new series...');
|
|
||||||
//$('#newSeriesLookup').watermark('Title of the series you want to add...');
|
|
||||||
|
|
||||||
$('#saveNewSeries').live('click', function () {
|
$('#saveNewSeries').live('click', function () {
|
||||||
var seriesTitle = $("#newSeriesLookup").val();
|
var seriesTitle = $("#newSeriesLookup").val();
|
||||||
var qualityId = $("#qualityList").val();
|
var qualityId = $("#qualityList").val();
|
||||||
|
@ -111,9 +106,8 @@ function reloadAddNew() {
|
||||||
//On load
|
//On load
|
||||||
jQuery(document).ready(function () {
|
jQuery(document).ready(function () {
|
||||||
//RootDir
|
//RootDir
|
||||||
$('#rootDirInput').watermark('Start typing to add new root folder...');
|
$('#rootDirInput').watermark('Enter your new root folder path...');
|
||||||
|
|
||||||
//AddNew
|
//AddNew
|
||||||
$('#newSeriesPath').watermark('Path for the new series...');
|
|
||||||
$('#newSeriesLookup').watermark('Title of the series you want to add...');
|
$('#newSeriesLookup').watermark('Title of the series you want to add...');
|
||||||
});
|
});
|
Loading…
Reference in New Issue