mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 21:24:59 +08:00
Make COLOR_REGEX stricter
This commit is contained in:
parent
62d9439530
commit
fa2cf41039
@ -28,7 +28,7 @@ emojione.imagePathSVG = 'emojione/svg/';
|
||||
emojione.imageType = 'svg';
|
||||
|
||||
const EMOJI_REGEX = new RegExp(emojione.unicodeRegexp+"+", "gi");
|
||||
const COLOR_REGEX = /#[0-9a-fA-F]{6}/;
|
||||
const COLOR_REGEX = /^#[0-9a-fA-F]{6}$/;
|
||||
|
||||
/* modified from https://github.com/Ranks/emojione/blob/master/lib/js/emojione.js
|
||||
* because we want to include emoji shortnames in title text
|
||||
|
Loading…
Reference in New Issue
Block a user