1
0
Fork 0
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:
Luke 2015-06-06 22:51:04 -04:00
parent 90ea727998
commit dfd651131a
8 changed files with 48 additions and 52 deletions

View file

@ -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);
});
})();