jellyfin-web/dashboard-ui/scripts/wizardservice.js

14 lines
287 B
JavaScript
Raw Normal View History

(function ($, document) {
$(document).on('pageinit', "#wizardServicePage", function () {
var page = this;
$('#btnNextPage', page).on('click', function () {
Dashboard.navigate('wizardfinish.html');
});
});
})(jQuery, document, window);