make nick highlighting not depend on case
This commit is contained in:
@ -173,7 +173,7 @@ function boot() {
|
||||
|
||||
// load only once
|
||||
var n = window.PLAYER['nickname'];
|
||||
window.PLAYER['nickMatcher'] = new RegExp('\\b('+n+')\\b');
|
||||
window.PLAYER['nickMatcher'] = new RegExp('\\b('+n+')\\b', 'ig');
|
||||
|
||||
$('#sidebar').show();
|
||||
}
|
||||
|
Reference in New Issue
Block a user