Advertisement
MeKLiN2

Untitled

Jan 3rd, 2024
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. // Function to handle system messages
  2. function handleSystemMessage(systemNode) {
  3. // Move system messages to the bottom right in their own DIV
  4. var systemDiv = document.createElement("div");
  5. systemDiv.className = "system-message";
  6. systemDiv.style.position = "fixed";
  7. systemDiv.style.bottom = "10px";
  8. systemDiv.style.right = "10px";
  9. systemDiv.style.backgroundColor = "#f0f0f0";
  10. systemDiv.style.padding = "10px";
  11. systemDiv.appendChild(systemNode.cloneNode(true));
  12. document.body.appendChild(systemDiv);
  13.  
  14. // Call the function to observe the chatbox
  15. observeChatbox();
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement