From 86bd20d5cce1afda9711e2b4d6321c63439bc1e3 Mon Sep 17 00:00:00 2001 From: calzoneman Date: Wed, 13 May 2015 12:19:03 -0500 Subject: [PATCH] Minor fix for emote insertion --- www/js/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/util.js b/www/js/util.js index 5478dfa1..f97c5350 100644 --- a/www/js/util.js +++ b/www/js/util.js @@ -2933,7 +2933,7 @@ EmoteList.prototype.loadPage = function (page) { if (!val.charAt(val.length - 1).match(/\s/)) { chatline.value += " "; } - chatline.value += " " + emote.name; + chatline.value += emote.name; } _this.modal.modal("hide");