Skip to content

Commit 5c7a3b1

Browse files
committed
Fix loading of Avalonia Browser app
1 parent 001f4cc commit 5c7a3b1

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

  • src/apps/Avalonia/Highbyte.DotNet6502.App.Avalonia.Browser/wwwroot

src/apps/Avalonia/Highbyte.DotNet6502.App.Avalonia.Browser/wwwroot/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,12 @@ <h4>Loading...</h4>
9595
</script>
9696
<script>
9797

98-
// Remove this delay (used to preview the splash screen)
98+
// Uncomment this delay (used to preview the splash screen)
9999
// setTimeout(function() {
100-
// var s = document.createElement('script');
101-
// s.type = 'module';
102-
// s.src = './main.js?v={{APP_VERSION}}';
103-
// document.body.appendChild(s);
100+
var s = document.createElement('script');
101+
s.type = 'module';
102+
s.src = './main.js?v={{APP_VERSION}}';
103+
document.body.appendChild(s);
104104
// }, 3000);
105105
</script>
106106
</body>

0 commit comments

Comments
 (0)