Merge pull request #6154 from JonnyTischbein/issue_open_commentbox_post_with_replies

[frio] Fix opening comment box when Post has replies
This commit is contained in:
Hypolite Petovan 2018-11-17 10:01:05 -05:00 committed by GitHub
commit f5d58d07e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 2 deletions

View File

@ -373,9 +373,15 @@ function openClose(theID) {
function showHide(theID) { function showHide(theID) {
var elem = document.getElementById(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')) {
elem.style.display = "none"; if (!$(edit).is(':visible')) {
edit.style.display = "block";
}
else {
elem.style.display = "none";
}
} }
else { else {
elem.style.display = "block"; elem.style.display = "block";