Fix lint errors

This commit is contained in:
Barney Carroll 2021-04-14 17:43:44 +01:00 committed by Stephan Hoyer
parent 9999fbe2a4
commit 0f9274f873
7 changed files with 47 additions and 47 deletions

View file

@ -695,7 +695,7 @@ o.spec("updateNodes", function() {
var vnodes = m("div",
undefined,
m("#", "a")
)
)
var updated = m("div",
m.fragment(m("#", "b")),
undefined,
@ -843,7 +843,7 @@ o.spec("updateNodes", function() {
var onupdate = o.spy()
var oncreate = o.spy()
var cached = m("B", {key: 1},
m("A", {oncreate: oncreate, onupdate: onupdate}, "A")
m("A", {oncreate: oncreate, onupdate: onupdate}, "A")
)
render(root, m("div", cached))
render(root, [])
@ -857,7 +857,7 @@ o.spec("updateNodes", function() {
var onupdate = o.spy()
var oncreate = o.spy()
var cached = m("B",
m("A", {oncreate: oncreate, onupdate: onupdate}, "A")
m("A", {oncreate: oncreate, onupdate: onupdate}, "A")
)
render(root, m("div", cached))
render(root, [])