Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions browser_js.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package browser

import (
"fmt"
"syscall/js"
)

func openBrowser(url string) error {
window := js.Global().Get("window").Call("open", url, "_blank")
if !window.Truthy() {
return fmt.Errorf("Unable to open tab, check browser logs")
}
return nil
}
3 changes: 2 additions & 1 deletion browser_unsupported.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// +build !linux,!windows,!darwin,!openbsd,!freebsd,!netbsd
//go:build !linux && !windows && !darwin && !openbsd && !freebsd && !netbsd && !js
// +build !linux,!windows,!darwin,!openbsd,!freebsd,!netbsd,!js

package browser

Expand Down