mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fixes #156 - Allow server to run as a service
This commit is contained in:
parent
5aea7b2c6a
commit
90aef42513
3 changed files with 58 additions and 2 deletions
13
dashboard-ui/scripts/wizardservice.js
Normal file
13
dashboard-ui/scripts/wizardservice.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
(function ($, document) {
|
||||
|
||||
$(document).on('pageinit', "#wizardServicePage", function () {
|
||||
|
||||
var page = this;
|
||||
|
||||
$('#btnNextPage', page).on('click', function () {
|
||||
|
||||
Dashboard.navigate('wizardfinish.html');
|
||||
});
|
||||
});
|
||||
|
||||
})(jQuery, document, window);
|
Loading…
Add table
Add a link
Reference in a new issue