TableTools improvement - stripping/removing newlines
TableTools improvement - stripping/removing newlines
SCM
Posts: 4Questions: 0Answers: 0
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
[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.