Fix opening comment box when Post has replies

This commit is contained in:
Jonny Tischbein 2018-11-17 15:53:34 +01:00
parent 460c257cb4
commit dd7d556c86
1 changed files with 8 additions and 2 deletions

View File

@ -373,10 +373,16 @@ function openClose(theID) {
function showHide(theID) {
var elem = document.getElementById(theID);
var edit = document.getElementById("comment-edit-submit-wrapper-" + theID.match('[0-9$]+'));
if( $(elem).is(':visible') ) {
if ($(elem).is(':visible')) {
if (!$(edit).is(':visible')) {
edit.style.display = "block";
}
else {
elem.style.display = "none";
}
}
else {
elem.style.display = "block";
}