Core: Only validate options while debugging. Closes #1528

This commit is contained in:
Rob Garrison 2018-03-19 06:05:04 -05:00
parent 4f9cf81e55
commit 745229d7ff

View File

@ -298,7 +298,10 @@
ts.setupParsers( c );
// start total row count at zero
c.totalRows = 0;
// only validate options while debugging. See #1528
if (c.debug) {
ts.validateOptions( c );
}
// build the cache for the tbody cells
// delayInit will delay building the cache until the user starts a sort
if ( !c.delayInit ) { ts.buildCache( c ); }