From 712d1dc79e8eb1002890620aede7442ce0cf5515 Mon Sep 17 00:00:00 2001 From: "marcins78@gmail.com" Date: Wed, 11 Apr 2012 15:21:56 +0000 Subject: [PATCH] Fixing warningMessage for chat room closing message. --- .../gemp-lotr-web/src/main/webapp/js/gemp-002/chat.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gemp-lotr/gemp-lotr-web/src/main/webapp/js/gemp-002/chat.js b/gemp-lotr/gemp-lotr-web/src/main/webapp/js/gemp-002/chat.js index 90c8803f5..197718078 100644 --- a/gemp-lotr/gemp-lotr-web/src/main/webapp/js/gemp-002/chat.js +++ b/gemp-lotr/gemp-lotr-web/src/main/webapp/js/gemp-002/chat.js @@ -69,7 +69,7 @@ var ChatBoxUI = Class.extend({ that.appendMessage("You have no permission to join this chat.", "warningMessage"); }, "404": function() { - that.appendMessage("Chat room was closed, please go to the Game Hall."); + that.appendMessage("Chat room was closed, please go to the Game Hall.", "warningMessage"); } }); @@ -194,7 +194,7 @@ var ChatBoxUI = Class.extend({ that.appendMessage("You have no permission to send messages to this chat.", "warningMessage"); }, "404": function() { - that.appendMessage("Chat room was closed, or you were inactive for too long, please go to the Game Hall."); + that.appendMessage("Chat room was closed, or you were inactive for too long, please go to the Game Hall.", "warningMessage"); } }); } else if (this.unsentMessages.length > 0) { @@ -208,7 +208,7 @@ var ChatBoxUI = Class.extend({ that.appendMessage("You have no permission to send messages to this chat.", "warningMessage"); }, "404": function() { - that.appendMessage("Chat room was closed, or you were inactive for too long, please go to the Game Hall."); + that.appendMessage("Chat room was closed, or you were inactive for too long, please go to the Game Hall.", "warningMessage"); } }); this.processingMessages = this.unsentMessages; @@ -224,7 +224,7 @@ var ChatBoxUI = Class.extend({ that.appendMessage("You have no permission to get message from this chat.", "warningMessage"); }, "404": function() { - that.appendMessage("Chat room was closed, or you were inactive for too long, please go to the Game Hall."); + that.appendMessage("Chat room was closed, or you were inactive for too long, please go to the Game Hall.", "warningMessage"); } }); }