Regular browser option added

This commit is contained in:
obscuren
2014-08-07 16:35:47 +02:00
parent a915ba17ed
commit 4dc5855dfe
3 changed files with 32 additions and 1 deletions

View File

@ -1,10 +1,11 @@
package main
import (
"path"
"github.com/ethereum/eth-go"
"github.com/ethereum/eth-go/ethutil"
"github.com/go-qml/qml"
"path"
)
type memAddr struct {
@ -42,6 +43,10 @@ func (ui *UiLib) OpenHtml(path string) {
go app.run()
}
func (ui *UiLib) OpenBrowser() {
ui.OpenHtml("file://" + ui.AssetPath("ext/home.html"))
}
func (ui *UiLib) Muted(content string) {
component, err := ui.engine.LoadFile(ui.AssetPath("qml/muted.qml"))
if err != nil {