bind as synchronous

This commit is contained in:
pypy
2020-11-01 22:18:37 +09:00
parent 87f6c985c5
commit 5938f877f8
3 changed files with 8 additions and 8 deletions

View File

@@ -52,9 +52,9 @@ namespace VRCX
CamelCaseJavascriptNames = false
};
Browser.JavascriptObjectRepository.Register("VRCX", VRCX.Instance, true, options);
Browser.JavascriptObjectRepository.Register("SharedVariable", SharedVariable.Instance, true, options);
Browser.JavascriptObjectRepository.Register("SharedVariable", SharedVariable.Instance, false, options);
Browser.JavascriptObjectRepository.Register("VRCXStorage", VRCXStorage.Instance, false, options);
Browser.JavascriptObjectRepository.Register("SQLite", SQLite.Instance, true, options);
Browser.JavascriptObjectRepository.Register("SQLite", SQLite.Instance, false, options);
Browser.JavascriptObjectRepository.Register("LogWatcher", LogWatcher.Instance, true, options);
Browser.JavascriptObjectRepository.Register("Discord", Discord.Instance, true, options);
Browser.IsBrowserInitializedChanged += (A, B) =>