mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
colors on recieved message
This commit is contained in:
@@ -11,10 +11,15 @@ function chat(data)
|
|||||||
document.getElementById("chat-btn").addEventListener("click", function(){
|
document.getElementById("chat-btn").addEventListener("click", function(){
|
||||||
console.log("clicked");
|
console.log("clicked");
|
||||||
$("#text-chat-input").focus();
|
$("#text-chat-input").focus();
|
||||||
|
$("#chat-btn").css("color", "white");
|
||||||
});
|
});
|
||||||
|
|
||||||
socket.on("chat,"+chan.toLowerCase(), function(data)
|
socket.on("chat,"+chan.toLowerCase(), function(data)
|
||||||
{
|
{
|
||||||
|
if($("#chat-bar").position()["left"] != 0)
|
||||||
|
{
|
||||||
|
$("#chat-btn").css("color", "grey");
|
||||||
|
}
|
||||||
var color = intToARGB(hashCode(data.substring(0,8))).substring(0,6);
|
var color = intToARGB(hashCode(data.substring(0,8))).substring(0,6);
|
||||||
$("#chat").append("<li><span style='color:"+color+";'>"+data.substring(0,8)+"</span></li>");
|
$("#chat").append("<li><span style='color:"+color+";'>"+data.substring(0,8)+"</span></li>");
|
||||||
var in_text = document.createTextNode(data.substring(8));
|
var in_text = document.createTextNode(data.substring(8));
|
||||||
|
|||||||
Reference in New Issue
Block a user