isundil 8 years ago
parent
commit
8d3031c72f
2 changed files with 2 additions and 2 deletions
  1. 1 1
      srv/public/style.css
  2. 1 1
      srv/src/slackHistory.js

+ 1 - 1
srv/public/style.css

@@ -97,7 +97,7 @@ body { display: flex; margin: 0; padding: 0; font-family: Lato, sans-serif; heig
 .chatmsg-hover > li > span { margin-top: 3.5px; margin-left: 3px; }
 .chatmsg-hover > li:first-child { border-bottom-left-radius: 5px; }
 .chatmsg-hover > li:last-child { border-top-right-radius: 5px; border-right: 1px; }
-.chat-chat-content .chatmsg-item:hover .chatmsg-hover { display: block; }
+.chatsystem-content .chatmsg-item:hover .chatmsg-hover { display: block; }
 .replyto-container { display: none; width: 100%; }
 .replyingTo .replyto-container { display: inline-block; }
 .replyingTo .chat-chat-content { height: calc(100vh - 13em); }

+ 1 - 1
srv/src/slackHistory.js

@@ -98,7 +98,7 @@ SlackHistory.prototype.push = function(ev, t) {
             var msgSource = ev["previous_message"] || ev["message"];
             if (msgSource) {
                 msg = this.messageFactory(msgSource, t);
-                msg.update(ev["message"] || ev, t);
+                msg.update(modifArg, t);
             } else {
                 msg = this.messageFactory(this.prepareMessage(ev, targetId), t);
             }