mirror of
https://github.com/OpenBankProject/API-Manager.git
synced 2026-02-06 13:36:48 +00:00
9 lines
236 B
JavaScript
9 lines
236 B
JavaScript
$(document).ready(function($) {
|
|
$('table.tablesorter').tablesorter();
|
|
$('#authentication-select').change(function() {
|
|
$('.authentication-method').hide();
|
|
let method = $(this).val();
|
|
$(`#authenticate-${method}`).show();
|
|
});
|
|
});
|