From 5a746c5b508b501d731b6fd15f17d1bd9f42a393 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 14 Jun 2016 00:15:13 -0400 Subject: [PATCH] update forms --- dashboard-ui/mypreferenceshome.html | 20 +++++++++++++------- dashboard-ui/scripts/mypreferenceshome.js | 14 ++++++++++---- 2 files changed, 23 insertions(+), 11 deletions(-) diff --git a/dashboard-ui/mypreferenceshome.html b/dashboard-ui/mypreferenceshome.html index 21b0e82660..aafba23c30 100644 --- a/dashboard-ui/mypreferenceshome.html +++ b/dashboard-ui/mypreferenceshome.html @@ -1,4 +1,4 @@ -
+
@@ -78,10 +78,13 @@
${LabelSelectFolderGroupsHelp}
-
-
- ${OptionDisplayChannelsInline} -
${OptionDisplayChannelsInlineHelp}
+
+
+ +
${OptionDisplayChannelsInlineHelp}
@@ -105,8 +108,11 @@
-
- ${OptionHideWatchedContentFromLatestMedia} +
+
diff --git a/dashboard-ui/scripts/mypreferenceshome.js b/dashboard-ui/scripts/mypreferenceshome.js index 0857a1390d..2928ad085d 100644 --- a/dashboard-ui/scripts/mypreferenceshome.js +++ b/dashboard-ui/scripts/mypreferenceshome.js @@ -4,7 +4,7 @@ var folderHtml = ''; - folderHtml += '
'; + folderHtml += '
'; folderHtml += result.map(function (i) { var currentHtml = ''; @@ -16,7 +16,10 @@ var checkedHtml = isChecked ? ' checked="checked"' : ''; - currentHtml += '' + i.Name + ''; + currentHtml += ''; return currentHtml; @@ -31,7 +34,7 @@ var folderHtml = ''; - folderHtml += '
'; + folderHtml += '
'; folderHtml += result.Items.map(function (i) { var currentHtml = ''; @@ -41,7 +44,10 @@ var isChecked = user.Configuration.LatestItemsExcludes.indexOf(i.Id) == -1; var checkedHtml = isChecked ? ' checked="checked"' : ''; - currentHtml += '' + i.Name + ''; + currentHtml += ''; return currentHtml;