Fix reply button visibility toggle by javascript

This commit is contained in:
ichim-david 2015-09-15 22:43:34 +03:00
parent ced8609a8c
commit 6e85735b5b
2 changed files with 4 additions and 2 deletions

View File

@ -4,7 +4,9 @@ Changelog
2.4.8 (unreleased)
------------------
- Nothing changed yet.
- Fix reply button not showing up since it uses a hide class which needs
to be removed instead of a display value
[ichim-david]
2.4.7 (2015-09-15)

View File

@ -257,7 +257,7 @@ require([ // jshint ignore:line
* Otherwise hide it, since the reply functions only work with JS
* enabled.
**********************************************************************/
$('.reply-to-comment-button').css('display' , 'inline');
$('.reply-to-comment-button').removeClass('hide');
});