mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-16 21:33:51 +02:00
bugfix
This commit is contained in:
12
VRForm.cs
12
VRForm.cs
@@ -46,12 +46,12 @@ namespace VRCX
|
||||
{
|
||||
CamelCaseJavascriptNames = false
|
||||
};
|
||||
Browser1.JavascriptObjectRepository.Register("VRCX", new VRCX(), true, options);
|
||||
Browser1.JavascriptObjectRepository.Register("VRCXStorage", new VRCXStorage(), false, options);
|
||||
Browser1.JavascriptObjectRepository.Register("SQLite", new SQLite(), true, options);
|
||||
Browser2.JavascriptObjectRepository.Register("VRCX", new VRCX(), true, options);
|
||||
Browser2.JavascriptObjectRepository.Register("VRCXStorage", new VRCXStorage(), false, options);
|
||||
Browser2.JavascriptObjectRepository.Register("SQLite", new SQLite(), true, options);
|
||||
Browser1.JavascriptObjectRepository.Register("VRCX", VRCX.Instance, true, options);
|
||||
Browser1.JavascriptObjectRepository.Register("VRCXStorage", VRCXStorage.Instance, false, options);
|
||||
Browser1.JavascriptObjectRepository.Register("SQLite", SQLite.Instance, true, options);
|
||||
Browser2.JavascriptObjectRepository.Register("VRCX", VRCX.Instance, true, options);
|
||||
Browser2.JavascriptObjectRepository.Register("VRCXStorage", VRCXStorage.Instance, false, options);
|
||||
Browser2.JavascriptObjectRepository.Register("SQLite", SQLite.Instance, true, options);
|
||||
Browser1.IsBrowserInitializedChanged += (A, B) =>
|
||||
{
|
||||
// Browser1.ShowDevTools();
|
||||
|
||||
Reference in New Issue
Block a user