diff --git a/NzbDrone.Web/Scripts/NzbDrone/addSeries.js b/NzbDrone.Web/Scripts/NzbDrone/addSeries.js
index 8ca88c18d..e384e3c09 100644
--- a/NzbDrone.Web/Scripts/NzbDrone/addSeries.js
+++ b/NzbDrone.Web/Scripts/NzbDrone/addSeries.js
@@ -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...');
+});
\ No newline at end of file
diff --git a/NzbDrone.Web/Views/AddSeries/AddNew.cshtml b/NzbDrone.Web/Views/AddSeries/AddNew.cshtml
index 5e757b864..ebd84fb33 100644
--- a/NzbDrone.Web/Views/AddSeries/AddNew.cshtml
+++ b/NzbDrone.Web/Views/AddSeries/AddNew.cshtml
@@ -9,12 +9,4 @@
@Html.DropDownList("qualityList", (SelectList)ViewData["QualityProfiles"], new { @class = "qualitySelector" })
-
-
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/NzbDrone.Web/Views/AddSeries/RootDir.cshtml b/NzbDrone.Web/Views/AddSeries/RootDir.cshtml
index 739235d50..fb5908da9 100644
--- a/NzbDrone.Web/Views/AddSeries/RootDir.cshtml
+++ b/NzbDrone.Web/Views/AddSeries/RootDir.cshtml
@@ -8,9 +8,3 @@
@{Html.RenderAction("RootList");}
-