1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

add remuxing permission

This commit is contained in:
Luke Pulverenti 2016-08-13 18:27:14 -04:00
parent eb9240a835
commit 411561daeb
5 changed files with 14 additions and 18 deletions

View file

@ -154,8 +154,6 @@ var Dashboard = {
if (info.HasPendingRestart) {
Dashboard.hideDashboardVersionWarning();
Dashboard.getCurrentUser().then(function (currentUser) {
if (currentUser.Policy.IsAdministrator) {
@ -215,16 +213,6 @@ var Dashboard = {
window.location.reload(true);
},
hideDashboardVersionWarning: function () {
var elem = document.getElementById('dashboardVersionWarning');
if (elem) {
elem.parentNode.removeChild(elem);
}
},
showFooterNotification: function (options) {
var removeOnHide = !options.id;