feat: initial support for browser.openURL for f/e

This commit is contained in:
Lea Anthony
2019-06-19 08:28:31 +10:00
parent 5b002e88b7
commit 7cabef946e
10 changed files with 118 additions and 47 deletions

View File

@@ -6,6 +6,7 @@ type Runtime struct {
Log *RuntimeLog
Dialog *RuntimeDialog
Window *RuntimeWindow
Browser *RuntimeBrowser
FileSystem *RuntimeFileSystem
}
@@ -15,6 +16,7 @@ func newRuntime(eventManager *eventManager, renderer Renderer) *Runtime {
Log: newRuntimeLog(),
Dialog: newRuntimeDialog(renderer),
Window: newRuntimeWindow(renderer),
Browser: newRuntimeBrowser(),
FileSystem: newRuntimeFileSystem(),
}
}