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