';
var nameText = AppInfo.isNativeApp ? 'Emby Theater' : 'Emby Theater';
html += '
A beautiful app for your TV and large screen tablet. ' + nameText + ' runs on Windows, Xbox One, Google Chrome, FireFox, Microsoft Edge and Opera.
';
@@ -223,7 +223,7 @@
var html = '';
html += '
';
- html += '
Try Emby Premiere
';
+ html += '
Try Emby Premiere
';
var learnMoreText = AppInfo.isNativeApp ? '' : 'Learn more';
diff --git a/dashboard-ui/scripts/taskbutton.js b/dashboard-ui/scripts/taskbutton.js
index 60a91943ea..b163337c02 100644
--- a/dashboard-ui/scripts/taskbutton.js
+++ b/dashboard-ui/scripts/taskbutton.js
@@ -25,9 +25,9 @@
if (options.panel) {
if (task) {
- $(options.panel).show();
+ options.panel.classList.remove('hide');
} else {
- $(options.panel).hide();
+ options.panel.classList.add('hide');
}
}
@@ -157,7 +157,7 @@
}
if (options.panel) {
- $(options.panel).hide();
+ options.panel.classList.add('hide');
}
if (options.mode == 'off') {
diff --git a/dashboard-ui/scripts/tvshows.js b/dashboard-ui/scripts/tvshows.js
index 01d18bd7ba..91f56dccd6 100644
--- a/dashboard-ui/scripts/tvshows.js
+++ b/dashboard-ui/scripts/tvshows.js
@@ -202,7 +202,8 @@
});
self.alphaPicker = new alphaPicker({
- element: alphaPickerElement
+ element: alphaPickerElement,
+ valueChangeEvent: 'click'
});
tabContent.querySelector('.btnFilter').addEventListener('click', function () {
diff --git a/dashboard-ui/strings/en-US.json b/dashboard-ui/strings/en-US.json
index 0ea8ccdaac..09d451e60f 100644
--- a/dashboard-ui/strings/en-US.json
+++ b/dashboard-ui/strings/en-US.json
@@ -2371,5 +2371,6 @@
"LabelBindToLocalNetworkAddress": "Bind to local network address:",
"LabelBindToLocalNetworkAddressHelp": "Optional. Override the local IP address to bind the http server to. If left empty, the server will bind to all availabile addresses. Changing this value requires restarting Emby Server.",
"TitleHostingSettings": "Hosting Settings",
- "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default."
+ "SettingsWarning": "Changing these values may cause instability or connectivity failures. If you experience any problems, we recommend changing them back to default.",
+ "MapChannels": "Map Channels"
}
diff --git a/dashboard-ui/syncactivity.html b/dashboard-ui/syncactivity.html
index 84200c2477..30d4e43190 100644
--- a/dashboard-ui/syncactivity.html
+++ b/dashboard-ui/syncactivity.html
@@ -3,11 +3,6 @@