Create CONTRIBUTING.md

I added the following to it:

- Bug reporting
- Feature requests
- Contributing guide
- Style guide
This commit is contained in:
Isiah Meadows 2015-11-07 06:34:11 -05:00 committed by impinball
parent df114a4ee2
commit 9fab2b8371
18 changed files with 1209 additions and 352 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")