mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
14 lines
272 B
JavaScript
14 lines
272 B
JavaScript
define(['jQuery'], function ($) {
|
|
|
|
$(document).on('pageinit', "#wizardServicePage", function () {
|
|
|
|
var page = this;
|
|
|
|
$('#btnNextPage', page).on('click', function () {
|
|
|
|
Dashboard.navigate('wizardagreement.html');
|
|
});
|
|
});
|
|
|
|
});
|