Fix reply button visibility toggle by javascript
This commit is contained in:
parent
ced8609a8c
commit
6e85735b5b
@ -4,7 +4,9 @@ Changelog
|
|||||||
2.4.8 (unreleased)
|
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)
|
2.4.7 (2015-09-15)
|
||||||
|
@ -257,7 +257,7 @@ require([ // jshint ignore:line
|
|||||||
* Otherwise hide it, since the reply functions only work with JS
|
* Otherwise hide it, since the reply functions only work with JS
|
||||||
* enabled.
|
* enabled.
|
||||||
**********************************************************************/
|
**********************************************************************/
|
||||||
$('.reply-to-comment-button').css('display' , 'inline');
|
$('.reply-to-comment-button').removeClass('hide');
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user