This repository was archived by the owner on May 3, 2023. It is now read-only.
File tree 1 file changed +3
-8
lines changed
1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -71,19 +71,14 @@ const elmWebComponents = {
71
71
const flags = mapFlags ( props )
72
72
context . flags = flags
73
73
74
- var elmDiv = this ;
75
- var parentDiv = this ;
76
-
77
- if ( useShadowDom ) {
78
- parentDiv = this . attachShadow ( { mode : 'open' } ) ;
79
- }
74
+ const parentDiv = useShadowDom ? this . attachShadow ( { mode : 'open' } ) : this ;
80
75
81
76
if ( elmVersion === '0.19' ) {
82
77
/* a change in Elm 0.19 means that ElmComponent.init now replaces the node you give it
83
78
* whereas in 0.18 it rendered into it. To avoid Elm therefore destroying our custom element
84
79
* we create a div that we let Elm render into, and manually clear any pre-rendered contents.
85
80
*/
86
- elmDiv = document . createElement ( 'div' )
81
+ const elmDiv = document . createElement ( 'div' )
87
82
88
83
parentDiv . innerHTML = ''
89
84
parentDiv . appendChild ( elmDiv )
@@ -94,7 +89,7 @@ const elmWebComponents = {
94
89
} )
95
90
setupPorts ( elmElement . ports )
96
91
} else if ( elmVersion === '0.18' ) {
97
- const elmElement = ElmComponent . embed ( elmDiv , flags )
92
+ const elmElement = ElmComponent . embed ( parentDiv , flags )
98
93
setupPorts ( elmElement . ports )
99
94
}
100
95
} catch ( error ) {
You can’t perform that action at this time.
0 commit comments