Skip to content

Commit 052c343

Browse files
committed
FIX: innerHTML was broken for elements that was not in the body tree
1 parent efb528f commit 052c343

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

dist/jails.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jails.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jails-js",
3-
"version": "5.8.1",
3+
"version": "5.8.2",
44
"description": "Jails - Elegant and Minimalistic Javascript Application Library",
55
"module": "./dist/jails.js",
66
"main": "./dist/jails.js",

src/component.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,11 @@ export default function Component( elm, { module, dependencies, templates, compo
106106
innerHTML( target, html_ ) {
107107

108108
const element = html_? target : elm
109-
const parser = new DOMParser()
110-
const virtual = parser.parseFromString(element.outerHTML, 'text/html')
109+
const clone = element.cloneNode()
111110
const html = html_? html_ : target
111+
clone.innerHTML = html
112112

113-
virtual.body.firstElementChild.innerHTML = html as string
114-
rAF( _ => Idiomorph.morph(element, virtual.body.innerHTML, IdiomorphOptions) )
113+
rAF( _ => Idiomorph.morph(element, clone, IdiomorphOptions) )
115114
}
116115
}
117116

0 commit comments

Comments
 (0)