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

14 lines
297 B
JavaScript
Raw Normal View History

(function ($, document) {
2015-06-06 19:51:04 -07:00
$(document).on('pageinitdepends', "#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);