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

implemented shutdown button

This commit is contained in:
Luke Pulverenti 2013-10-01 11:16:38 -04:00
parent 5124b240f0
commit cb5da9caca
6 changed files with 31 additions and 4 deletions

View file

@ -514,9 +514,23 @@
if (result) {
$('#btnRestartServer').button('disable');
$('#btnShutdown').button('disable');
Dashboard.restartServer();
}
});
},
shutdown: function () {
Dashboard.confirm("Are you sure you wish to shutdown Media Browser Server?", "Shutdown", function (result) {
if (result) {
$('#btnRestartServer').button('disable');
$('#btnShutdown').button('disable');
ApiClient.shutdownServer();
}
});
}
};