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

14 lines
290 B
JavaScript
Raw Normal View History

(function ($, document) {
$(document).on('pageinit', "#wizardServicePage", function () {
var page = this;
$('#btnNextPage', page).on('click', function () {
2015-01-05 20:25:23 -07:00
Dashboard.navigate('wizardagreement.html');
});
});
})(jQuery, document, window);