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

15 lines
266 B
JavaScript
Raw Normal View History

var WizardFinishPage = {
2013-04-23 15:17:21 -04:00
onFinish: function () {
2014-11-14 21:31:03 -05:00
ApiClient.ajax({
2014-11-14 21:31:03 -05:00
url: ApiClient.getUrl('Startup/Complete'),
type: 'POST'
2013-04-23 15:17:21 -04:00
2014-11-14 21:31:03 -05:00
}).done(function () {
2013-04-23 15:17:21 -04:00
2014-11-14 21:31:03 -05:00
Dashboard.navigate('dashboard.html');
});
}
};