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