mirror of
https://github.com/Jetsparrow/jetherald.git
synced 2026-01-20 23:56:08 +03:00
8 lines
251 B
JavaScript
8 lines
251 B
JavaScript
$(function () {
|
|
$(".showable-container > .showable")
|
|
.css("display", "none")
|
|
.removeClass("hide");
|
|
$(".showable-container > .show-button").click(function () {
|
|
$(this).parent().children(".showable").toggle();
|
|
});
|
|
}); |