Merge pull request #737 from matrix-org/luke/fix-color-regex-strictness
Make COLOR_REGEX stricterpull/21833/head
commit
9f6a5d11ae
|
@ -28,7 +28,7 @@ emojione.imagePathSVG = 'emojione/svg/';
|
||||||
emojione.imageType = 'svg';
|
emojione.imageType = 'svg';
|
||||||
|
|
||||||
const EMOJI_REGEX = new RegExp(emojione.unicodeRegexp+"+", "gi");
|
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
|
/* modified from https://github.com/Ranks/emojione/blob/master/lib/js/emojione.js
|
||||||
* because we want to include emoji shortnames in title text
|
* because we want to include emoji shortnames in title text
|
||||||
|
|
Loading…
Reference in New Issue