≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
TableTools improvement - stripping/removing newlines
TableTools improvement - stripping/removing newlines
SCM
Posts: 4
Questions: 0
Answers: 0
January 2012
edited January 2012
in
General
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.