Merge 'origin/patch-2', remove trailing commas

This commit is contained in:
impinball 2015-11-25 22:45:45 -05:00
parent e0f51db618
commit 0b173deed7
19 changed files with 380 additions and 384 deletions

View file

@ -36,7 +36,7 @@ describe("m.trust()", function () {
var root = document.createElement("div")
m.render(root, [
m.trust("<p>1</p>123<p>2</p>"),
m("i", "foo"),
m("i", "foo")
])
expect(root.childNodes[3].tagName).to.equal("I")
})
@ -49,7 +49,7 @@ describe("m.trust()", function () {
m.render(root, [
m.trust("<td>1</td><td>2</td>"),
m("td", "foo"),
m("td", "foo")
])
expect(root.childNodes[2].tagName).to.equal("td")