From 97964e046a807776f6225d1e7e9c8e4596d5b66d Mon Sep 17 00:00:00 2001 From: Montreal Date: Sat, 22 Jun 2024 14:20:57 +0300 Subject: [PATCH] Update chatlog-parser.js --- js/chatlog-parser.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/js/chatlog-parser.js b/js/chatlog-parser.js index e4aa752..7ab1da7 100644 --- a/js/chatlog-parser.js +++ b/js/chatlog-parser.js @@ -34,7 +34,6 @@ $(document).ready(function() { navigator.userAgent.indexOf("Chrome") != -1 && $(this).append(" ⠀"); - formattedText.toLowerCase().indexOf("*") >= 0 && $(this).addClass("me"); formattedText.toLowerCase().indexOf(" says:") >= 0 && $(this).addClass("white"); @@ -49,9 +48,12 @@ $(document).ready(function() { formattedText.toLowerCase().indexOf(":o<") >= 0 && $(this).addClass("whisper"); formattedText.toLowerCase().indexOf(" (phone - low)") >= 0 && $(this).addClass("whisper"); + formattedText.toLowerCase().indexOf(" [san interview]") == 0 && $(this).addClass("news"); formattedText.toLowerCase().indexOf("[san interview]") == 0 && $(this).addClass("news"); + formattedText.toLowerCase().indexOf(" **[ch:") == 0 && $(this).addClass("radio"); formattedText.toLowerCase().indexOf("**[ch:") == 0 && $(this).addClass("radio"); + formattedText.toLowerCase().startsWith(" ** [") && formattedText.toLowerCase().includes("]") && /\[.*?\]/.test(formattedText) && $(this).addClass("dep"); formattedText.toLowerCase().startsWith("** [") && formattedText.toLowerCase().includes("]") && /\[.*?\]/.test(formattedText) && $(this).addClass("dep");