diff options
author | Austin Schaffer <austin.schaffer@ryansg.com> | 2020-01-28 13:57:42 -0500 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2020-01-29 11:14:13 -0500 |
commit | 0db05c442cf18d8a6ea51da0d31285b8622a8d37 (patch) | |
tree | baa224534a0f9b579ad80d76cbc6b418070208bb | |
parent | bc28af01455e0bbb00e91e56bb89e078766207cb (diff) | |
download | tame-0db05c442cf18d8a6ea51da0d31285b8622a8d37.tar.gz tame-0db05c442cf18d8a6ea51da0d31285b8622a8d37.tar.bz2 tame-0db05c442cf18d8a6ea51da0d31285b8622a8d37.zip |
Pass canterm flag to raters
-rw-r--r-- | src/current/standalone.xsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/current/standalone.xsl b/src/current/standalone.xsl index db8ac79..809a765 100644 --- a/src/current/standalone.xsl +++ b/src/current/standalone.xsl @@ -92,10 +92,10 @@ <text>; </text> <!-- we'll export a version that automatically performs the mapping --> - <text>module.exports = function( args_base ) { </text> + <text>module.exports = function( args_base, _canterm ) { </text> <text>var ret; rater.fromMap( args_base, function( args ) {</text> <text> - var rater_result = rater( args ); + var rater_result = rater( args, _canterm ); // perf counter var start = ( new Date() ).getTime(); |