File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
contributed/conversationalAI Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import model from "model" with { type:"json" };
2323import assets from "assets" ;
2424import Controller from "Controller" ;
2525
26- globalThis . importNow = function ( specifier ) @ "xs_importNow" ;
26+ globalThis . importNow = function ( specifier ) { return native ( "xs_importNow" ) . call ( this , specifier ) ; } ;
2727globalThis . localize = function ( it ) {
2828 if ( it ) {
2929 let result = locals . get ( it ) ;
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import assets from "assets";
2323import Timeline from "piu/Timeline" ;
2424import View from "Common" ;
2525
26- function computeLevel ( buffer ) @ "xs_computeLevel" ;
26+ function computeLevel ( buffer ) { return native ( "xs_computeLevel" ) . call ( this , buffer ) ; } ;
2727
2828class LevelsBehavior extends View . Behavior {
2929 onCreate ( container , view ) {
You can’t perform that action at this time.
0 commit comments