jellyfin-web/dashboard-ui/scripts/wizardservice.js
2015-06-06 22:51:04 -04:00

14 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);