Fix not all classes removed
This is due to DomTokenList being dynamic, looping it while removing items from it cause wrong indices
This commit is contained in:
parent
941d2efeb1
commit
1a714d214b
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,7 @@
|
|||
import emojifyText from './emojify-text';
|
||||
|
||||
const fauxDiv = document.createElement('div');
|
||||
const whitelistLinkClasses = ['u-url', 'mention', 'hashtag'];
|
||||
|
||||
function enhanceContent(content, opts = {}) {
|
||||
const { emojis, postEnhanceDOM = () => {} } = opts;
|
||||
|
@ -22,10 +23,9 @@ function enhanceContent(content, opts = {}) {
|
|||
|
||||
// Remove all classes except `u-url`, `mention`, `hashtag`
|
||||
const links = Array.from(dom.querySelectorAll('a[class]'));
|
||||
const whitelistClasses = ['u-url', 'mention', 'hashtag'];
|
||||
links.forEach((link) => {
|
||||
link.classList.forEach((c) => {
|
||||
if (!whitelistClasses.includes(c)) {
|
||||
Array.from(link.classList).forEach((c) => {
|
||||
if (!whitelistLinkClasses.includes(c)) {
|
||||
link.classList.remove(c);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Reference in a new issue