Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
breck7 committed Dec 18, 2024
1 parent 2d45622 commit 05ddc45
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion products/SandboxApp.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ class SandboxApp extends AbstractParticleComponentParser {
shareComponent
tableComponent
githubTriangleComponent`)
window.app = app
const win = window
win.app = app
app.startWhenReady()
}
loadJsonSampleCommand() {
Expand Down
3 changes: 2 additions & 1 deletion sandbox/SandboxApp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ class SandboxApp extends AbstractParticleComponentParser {
shareComponent
tableComponent
githubTriangleComponent`)
window.app = app
const win = <any>window
win.app = app
app.startWhenReady()
}

Expand Down

0 comments on commit 05ddc45

Please sign in to comment.