diff options
author | Andy Rickert <andrew_rickert@brown.edu> | 2020-06-08 14:22:27 -0400 |
---|---|---|
committer | Andy Rickert <andrew_rickert@brown.edu> | 2020-06-08 14:22:27 -0400 |
commit | e2a29915b100cb9a1580e224e0cfdfb8be669208 (patch) | |
tree | 084972f594c22fe4790d8f9bff3949a1bf31fa18 /src/client/util/Scripting.ts | |
parent | b8e81dc8a87ad0e4c5147553f326f3f4931b355b (diff) |
fixed filtering on search, allowing buckets to expand searches
Diffstat (limited to 'src/client/util/Scripting.ts')
-rw-r--r-- | src/client/util/Scripting.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/util/Scripting.ts b/src/client/util/Scripting.ts index ab577315c..98bbffcd7 100644 --- a/src/client/util/Scripting.ts +++ b/src/client/util/Scripting.ts @@ -93,7 +93,7 @@ export function scriptingGlobal(constructor: { new(...args: any[]): any }) { Scripting.addGlobal(constructor); } -const _scriptingGlobals: { [name: string]: any } = {}; +export const _scriptingGlobals: { [name: string]: any } = {}; let scriptingGlobals: { [name: string]: any } = _scriptingGlobals; function Run(script: string | undefined, customParams: string[], diagnostics: any[], originalScript: string, options: ScriptOptions): CompileResult { |