Closed aendra-rininsland closed 8 years ago
This is fixed in c3.service.js on ln. 386:
restoreCallbacks: function(config){
function evalFormatters(key, value) {
if (key === 'format' && typeof value === 'string') {
return eval('(' + value + ')'); // jshint ignore:line
} else {
return value;
}
}
traverse(config, evalFormatters);
return config;
}
Presently they're all in a block sort of like this:
This is super brittle, ugly as sin, and currently not working for WordPress.
There has to be a better way.