Compare commits

...

1 Commits

Author SHA1 Message Date
0ed3460d7c Added process_time var 2022-08-03 15:09:40 +09:00

View File

@ -78,6 +78,7 @@ VFlow.prototype.endFlow = function( layout, ext )
var FinalHandle = function( def, data, _class ) var FinalHandle = function( def, data, _class )
{ {
var view = doT.template( data, options[ _class ], def ); var view = doT.template( data, options[ _class ], def );
viewData[ "_process_time" ] = () => _self.scope.ProcessTime;
_self.Render( view( viewData ) ); _self.Render( view( viewData ) );
}; };