fix(gioui): disable file load / save dialogs in browser

This at least gets the program to compile into js as sqweek does not work in browser, but we really need to look for a long term solution. How to load & save songs in browser?
This commit is contained in:
vsariola 2021-03-04 11:18:59 +02:00
parent 079d5a9ef1
commit c7448699b6
2 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,5 @@
// +build !js
package gioui
import (

View File

@ -0,0 +1,9 @@
package gioui
func (t *Tracker) LoadSongFile() {
// TODO: how to load songs in browser, just disabling it for now
}
func (t *Tracker) SaveSongFile() {
// TODO: how to save songs in browser, just disabling it for now
}