Hmm... the above wasn't necessary. I could fix instead by going below to the strip function and commenting out tmp.innerText
line 689: return tmp.textContent || tmp.innerText;
changes to
line 689: return tmp.textContent; // || tmp.innerText;
Hmm... the above wasn't necessary. I could fix instead by going below to the strip function and commenting out tmp.innerText
line 689: return tmp.textContent || tmp.innerText;
changes to
line 689: return tmp.textContent; // || tmp.innerText;