aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/static/scripts.js
diff options
context:
space:
mode:
authorGravatar Igor Ustyugov2016-09-04 11:30:27 +0500
committerGravatar Vitaly Takmazov2016-09-04 23:43:04 +0300
commitc3422c2c08510dbb7443c63b88adf1587deb8f76 (patch)
tree15b6f448a25f83c4ed05cdf1b8ab392c62230990 /juick-www/src/main/static/scripts.js
parent26ed351bbc59767be8ce2500cbb5250de63df5c9 (diff)
Fix avatar/timestamp on small display
Diffstat (limited to 'juick-www/src/main/static/scripts.js')
-rw-r--r--juick-www/src/main/static/scripts.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/juick-www/src/main/static/scripts.js b/juick-www/src/main/static/scripts.js
index 36b6fc36..0ab31345 100644
--- a/juick-www/src/main/static/scripts.js
+++ b/juick-www/src/main/static/scripts.js
@@ -138,9 +138,9 @@ function wsIncomingReply(msg) {
var msgComment = document.createElement('div');
msgComment.setAttribute('class', 'msg-comment');
msgComment.style.display = 'none';
- msgCont.appendChild(msgMenu);
- msgCont.appendChild(msgTimestamp);
- msgCont.appendChild(msgAvatar);
+ msgHeader.appendChild(msgAvatar);
+ msgHeader.appendChild(msgMenu);
+ msgHeader.appendChild(msgTimestamp);
msgCont.appendChild(msgHeader);
msgCont.appendChild(msgTxt);
msgCont.appendChild(msgLinks);