mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
remove bundled scripts
This commit is contained in:
parent
90ea727998
commit
dfd651131a
8 changed files with 48 additions and 52 deletions
|
@ -1,8 +1,8 @@
|
|||
var WizardFinishPage = {
|
||||
(function(){
|
||||
|
||||
onFinish: function () {
|
||||
function onFinish() {
|
||||
|
||||
ApiClient.ajax({
|
||||
ApiClient.ajax({
|
||||
|
||||
url: ApiClient.getUrl('Startup/Complete'),
|
||||
type: 'POST'
|
||||
|
@ -11,5 +11,11 @@
|
|||
|
||||
Dashboard.navigate('dashboard.html');
|
||||
});
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
$(document).on('pageinitdepends', '#wizardFinishPage', function(){
|
||||
|
||||
$('.btnWizardNext', this).on('click', onFinish);
|
||||
});
|
||||
|
||||
})();
|
Loading…
Add table
Add a link
Reference in a new issue