mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-15 05:00:49 +08:00
11 lines
284 B
JavaScript
Vendored
11 lines
284 B
JavaScript
Vendored
;
|
|
jQuery('.spoiler-title').on('click', function () {
|
|
let content = jQuery(this).parent().next();
|
|
if (content.hasClass('collapse')) {
|
|
content.height(content[0].scrollHeight).removeClass('collapse')
|
|
} else {
|
|
content.height(0).addClass('collapse')
|
|
}
|
|
});
|
|
|