From dcc98c3efbc27dec84edf45b8be00ba03ca5adc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Tue, 24 Jan 2017 23:55:57 -0500 Subject: [PATCH] Un-ellipsis placeholder and use ES6 template --- client/js/lounge.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/js/lounge.js b/client/js/lounge.js index 1b9f248f..81275fbd 100644 --- a/client/js/lounge.js +++ b/client/js/lounge.js @@ -1040,7 +1040,7 @@ $(function() { var placeholder = ""; if (chan.data("type") === "channel" || chan.data("type") === "query") { - placeholder = "Write to " + chan.data("title") + "..."; + placeholder = `Write to ${chan.data("title")}`; } input.attr("placeholder", placeholder);