Open GoogleCodeExporter opened 8 years ago
I have just come across this issue as well. Looks like "remove" gets rid of the
spans that have been put round the identified words along with the words.
Original comment by tcsmith1...@googlemail.com
on 26 Mar 2012 at 10:40
Had a look at this a bit more and managed to come up with a fix. Replace line
316 from
this.after(this.innerHTML).remove();
to
$(this).replaceWith(this[0].innerText);
and it seems to fix the issue. Can I help to submit this at all?
Original comment by tcsmith1...@googlemail.com
on 26 Mar 2012 at 10:57
Changing to
$(this).replaceWith($(this).html());
Seems to work.
Original comment by jason.fa...@gmail.com
on 29 Aug 2012 at 11:46
Original issue reported on code.google.com by
fbuchin...@gmail.com
on 10 Feb 2011 at 10:35