From ba4b033db9d7ae476e0fed8edd98a167c999d6b7 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Fri, 20 Apr 2018 15:26:44 -0700 Subject: [PATCH] Disable sending of quoted replies for now --- js/views/message_view.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/views/message_view.js b/js/views/message_view.js index 12b278f2f..38bbcf353 100644 --- a/js/views/message_view.js +++ b/js/views/message_view.js @@ -447,7 +447,8 @@ avatar: (contact && contact.getAvatar()), profileName: (contact && contact.getProfileName()), innerBubbleClasses: this.isImageWithoutCaption() ? '' : 'with-tail', - hoverIcon: !hasErrors, + // TODO: Turn this on when we're ready to enable sending quoted replies + hoverIcon: false, // !hasErrors, hasAttachments, reply: i18n('replyToMessage'), }, this.render_partials()));