Merge pull request #14 from wailsapp/Port-Build

Update vue template to use BoxString
This commit is contained in:
Lea Anthony
2019-01-11 06:49:31 +11:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -134,8 +134,8 @@ func (b *boundFunction) call(data string) ([]reflect.Value, error) {
}
args[index] = value
}
b.log.Infof("Unmarshalled Args: %+v\n", jsArgs)
b.log.Infof("Converted Args: %+v\n", args)
b.log.Debugf("Unmarshalled Args: %+v\n", jsArgs)
b.log.Debugf("Converted Args: %+v\n", args)
results := b.function.Call(args)
b.log.Debugf("results = %+v", results)

View File

@@ -13,8 +13,8 @@ func main() {
Width: 1024,
Height: 768,
Title: "{{.Name}}",
JS: BoxString(&assets, "app.js"),
CSS: BoxString(&assets, "app.css"),
JS: wails.BoxString(&assets, "app.js"),
CSS: wails.BoxString(&assets, "app.css"),
})
app.Bind(newQuotesCollection())
app.Run()