mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
13 lines
272 B
JavaScript
13 lines
272 B
JavaScript
define(['jQuery'], function ($) {
|
|
|
|
$(document).on('pageinit', "#wizardServicePage", function () {
|
|
|
|
var page = this;
|
|
|
|
$('#btnNextPage', page).on('click', function () {
|
|
|
|
Dashboard.navigate('wizardagreement.html');
|
|
});
|
|
});
|
|
|
|
});
|