Closed porcus closed 5 years ago
Any chance this could get merged?
Oh, interesting! I wonder if this PR could be modified to remove changes to dist/
files?
I want the test changes and the src changes and the README changes. But the dist stuff gets built for releases. (Sorry)
This will make testing and merging easier for me. Thank you!
Merged in #359—thank you!
v3.1.0 is out!
I still had an issue inside version 3.1.2 when using webpack and the no dependency version. Tablesaw did not initialize properly. I resolved by calling the Tablesaw._init() instead of the default .init() function:
import('tablesaw').then((Tablesaw) => { Tablesaw._init(); }
Greetings Jan
This PR addresses the issue reported in #342.
In order to add unit tests for this, it was necessary to create a new html page. The new tests pass in modern browsers as long as they are served from an http server (but not from the file system).
This change is