Commit 71410fdc by Jeong Gilmo

- redmineのチャットについて

 #36147 に対応しました。
 
parent 76e4242e
...@@ -464,6 +464,9 @@ socket.on('loadMessages', function(messages, shopMemberId){ ...@@ -464,6 +464,9 @@ socket.on('loadMessages', function(messages, shopMemberId){
//userProfilePathが使えるpathかをcheckして使えないpathの場合、default画像の経路に変更 //userProfilePathが使えるpathかをcheckして使えないpathの場合、default画像の経路に変更
message.profileImagePath = profileImgPathValidCheck(message.profileImagePath, message.checkProfileExist) message.profileImagePath = profileImgPathValidCheck(message.profileImagePath, message.checkProfileExist)
// #36147
message.message = message.message.toString()
let html = Mustache.render(template, { let html = Mustache.render(template, {
text: message.message, text: message.message,
from: message.loginId, from: message.loginId,
...@@ -497,7 +500,7 @@ jQuery('#message-form').on('keypress', function(event){ ...@@ -497,7 +500,7 @@ jQuery('#message-form').on('keypress', function(event){
jQuery('#message-send-btn').on('click', function (e){ jQuery('#message-send-btn').on('click', function (e){
e.preventDefault(); e.preventDefault();
const messageTextBox = jQuery('#message-form'); const messageTextBox = jQuery('#message-form');
const message = messageTextBox.val().length > 0 ? encodeURIComponent(messageTextBox.val()) : ""; const message = messageTextBox.val().length > 0 ? encodeURIComponent(messageTextBox.val() + " ") : "";
messageTextBox.val(''); messageTextBox.val('');
if(message.length > 0) { if(message.length > 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment