TableTools improvement - stripping/removing newlines

TableTools improvement - stripping/removing newlines

SCMSCM Posts: 4Questions: 0Answers: 0
edited January 2012 in TableTools
Replace - Line 1427 (TableTools.js):
[code]sLoopData = mTypeData.replace(/\n/g," ");[/code]

with:
[code]sLoopData = mTypeData.replace(/(\r\n|\n)/gm," ");[/code]

... just in case you have have some Windows characters.

SCM
This discussion has been closed.