diff --git a/dashboard-ui/camerauploadsettings.html b/dashboard-ui/camerauploadsettings.html
index 3cade19b9b..cc46870724 100644
--- a/dashboard-ui/camerauploadsettings.html
+++ b/dashboard-ui/camerauploadsettings.html
@@ -7,9 +7,9 @@
${HeaderCameraUpload}
+
${SelectCameraUploadServers}
-
diff --git a/dashboard-ui/components/appfooter/appfooter.js b/dashboard-ui/components/appfooter/appfooter.js
index 4c21e5cb44..a3be8707f2 100644
--- a/dashboard-ui/components/appfooter/appfooter.js
+++ b/dashboard-ui/components/appfooter/appfooter.js
@@ -20,7 +20,7 @@
});
}
- function dockedTabs(options) {
+ function appFooter(options) {
var self = this;
@@ -41,7 +41,7 @@
initHeadRoom(self, self.element);
}
- dockedTabs.prototype.destroy = function () {
+ appFooter.prototype.destroy = function () {
var self = this;
if (self.headroom) {
@@ -52,5 +52,5 @@
self.element = null;
};
- return dockedTabs;
+ return appFooter;
});
\ No newline at end of file
diff --git a/dashboard-ui/css/nowplayingbar.css b/dashboard-ui/css/nowplayingbar.css
index 0bb7a5e4ba..da9a5a7224 100644
--- a/dashboard-ui/css/nowplayingbar.css
+++ b/dashboard-ui/css/nowplayingbar.css
@@ -56,7 +56,6 @@
bottom: 0;
left: 0;
right: 0;
- top : 100%;
/* Above everything, except for the video player and popup overlays */
z-index: 1097;
color: #fff;
@@ -65,8 +64,6 @@
/*box-shadow: 0 -2px 2px 0 rgba(0,0,0,.14),-1px 5px 1px rgba(0,0,0,.12);*/
will-change: transform;
contain: layout style;
- height: 100%;
- transform: translateY(-64px);
}
.hiddenNowPlayingBar .nowPlayingBar {
diff --git a/dashboard-ui/legacy/selectmenu.js b/dashboard-ui/legacy/selectmenu.js
index cc230fd682..959b8d617d 100644
--- a/dashboard-ui/legacy/selectmenu.js
+++ b/dashboard-ui/legacy/selectmenu.js
@@ -1,5 +1,7 @@
-// TODO: This needs to be deprecated, but it's used heavily by plugins
-$.fn.selectmenu = function () {
- // No-op. This implementation only exists to prevent script errors
- return this;
-};
\ No newline at end of file
+define(['jQuery'], function ($) {
+ // TODO: This needs to be deprecated, but it's used heavily by plugins
+ $.fn.selectmenu = function () {
+ // No-op. This implementation only exists to prevent script errors
+ return this;
+ };
+});
\ No newline at end of file
diff --git a/dashboard-ui/mypreferencesmenu.html b/dashboard-ui/mypreferencesmenu.html
index 5ad8f2bd8b..ea89e1b18f 100644
--- a/dashboard-ui/mypreferencesmenu.html
+++ b/dashboard-ui/mypreferencesmenu.html
@@ -1,4 +1,4 @@
-