Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
joeizang committed Dec 3, 2021
1 parent e3c32bb commit 722bc2b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/remix-ide/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ class App {
self._components = {}
self._view = {}
self._view.splashScreen = yo`
<div class=${css.centered}>
<div class=${css.centered} data-id="remixIDESplash">
${basicLogo()}
<div class="info-secondary" style="text-align:center">
REMIX IDE
Expand Down Expand Up @@ -243,6 +243,9 @@ class App {
// ----------------- theme service ---------------------------------
const themeModule = new ThemeModule(registry)
registry.put({ api: themeModule, name: 'themeModule' })
console.log('what is self._view in app.js? ', { self })
const elmt = self._view.el
console.log('what is self._view.el in app.js? ', { elmt })
themeModule.initTheme(() => {
setTimeout(() => {
document.body.removeChild(self._view.splashScreen)
Expand Down

0 comments on commit 722bc2b

Please sign in to comment.