3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Panel/public/assets/js/credential.js
2020-02-26 14:59:58 +01:00

7 lines
205 B
JavaScript

$(function() {
$("code i").click(function() {
const parent = $(this).parent();
parent.parent().find("code.hidden").removeClass("hidden");
parent.addClass("hidden");
});
});