From 326bda9595ca8e0cb200d4a4904e1a1b937eba25 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Fri, 16 Nov 2018 09:59:25 -0800 Subject: [PATCH] Remove use of const for compatibility with old chrome versions --- js/views/conversation_view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/views/conversation_view.js b/js/views/conversation_view.js index 247fe21f62..6b1a75d7db 100644 --- a/js/views/conversation_view.js +++ b/js/views/conversation_view.js @@ -875,7 +875,7 @@ checkUnverifiedSendMessage: function(e, options) { e.preventDefault(); - const toast = new Whisper.ReadOnlyToast(); + var toast = new Whisper.ReadOnlyToast(); toast.$el.insertAfter(this.$el); toast.render(); },