Make custom highlights case-insensitive

This commit is contained in:
Jérémie Astori 2016-08-16 00:24:20 -04:00
parent f824036225
commit d48830a1fd

View file

@ -204,7 +204,7 @@ $(function() {
var template = "msg";
if (!data.msg.highlight && !data.msg.self && (type === "message" || type === "notice") && highlights.some(function(h) {
return data.msg.text.indexOf(h) > -1;
return data.msg.text.toLocaleLowerCase().indexOf(h.toLocaleLowerCase()) > -1;
})) {
data.msg.highlight = true;
}