mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
21 lines
379 B
JavaScript
21 lines
379 B
JavaScript
(function(){
|
|
|
|
function onFinish() {
|
|
|
|
ApiClient.ajax({
|
|
|
|
url: ApiClient.getUrl('Startup/Complete'),
|
|
type: 'POST'
|
|
|
|
}).done(function () {
|
|
|
|
Dashboard.navigate('dashboard.html');
|
|
});
|
|
}
|
|
|
|
$(document).on('pageinitdepends', '#wizardFinishPage', function(){
|
|
|
|
$('.btnWizardNext', this).on('click', onFinish);
|
|
});
|
|
|
|
})(); |