after build the browser is refreshed

This commit is contained in:
TankTheFrank 2017-10-19 13:39:59 +03:00
parent 65e995ca17
commit c34cb05355
1 changed files with 6 additions and 0 deletions

View File

@ -86,6 +86,12 @@ func NewWatcher(paths []string, files []string, isgenerate bool) {
scheduleTime = time.Now().Add(1 * time.Second)
time.Sleep(scheduleTime.Sub(time.Now()))
AutoBuild(files, isgenerate)
if config.Conf.EnableReload {
// Wait 100ms more before refreshing the browser
time.Sleep(100 * time.Millisecond)
sendReload(e.String())
}
}()
}
case err := <-watcher.Errors: