5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 20:51:38 +08:00

[v2] Fix typo in templates

This commit is contained in:
Lea Anthony 2021-10-22 08:40:22 +11:00
parent bb25b3f42f
commit 35ebbdfa12
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ func (b *App) startup(ctx context.Context) {
}
// domReady is called after the front-end dom has been loaded
func (b App) domReady(ctx context.Context) {
func (b *App) domReady(ctx context.Context) {
// Add your action here
}

View File

@ -22,7 +22,7 @@ func (b *App) startup(ctx context.Context) {
}
// domReady is called after the front-end dom has been loaded
func (b App) domReady(ctx context.Context) {
func (b *App) domReady(ctx context.Context) {
// Add your action here
}