mir3z / texthighlighter

-- NO LONGER MAINTAINED -- TextHighlighter allows you to highlight text on web pages.
http://mir3z.github.com/texthighlighter/
MIT License
230 stars 101 forks source link

Cannot read property 'nodeType' of null #31

Open Praveen-Danagoudra opened 7 years ago

Praveen-Danagoudra commented 7 years ago

/**

corinnaSchultz commented 6 years ago

I modified src/text-highlighter.js to add the following if statement to refineRangeBoundaries:

   } else if (startContainer.nextSibling) {
      startContainer = startContainer.nextSibling;
   }