1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
jellyfin-web/src/controllers/wizard/finish/index.js
2020-11-05 22:58:26 +00:00

16 lines
422 B
JavaScript

import loading from '../../../components/loading/loading';
function onFinish() {
loading.show();
ApiClient.ajax({
url: ApiClient.getUrl('Startup/Complete'),
type: 'POST'
}).then(function () {
loading.hide();
window.location.href = 'index.html';
});
}
export default function (view, params) {
view.querySelector('.btnWizardNext').addEventListener('click', onFinish);
}