git ssb

1+

Matt McKegg / mutant



Commit e75defac47630de9da141ca0ca89cba54a030464

fix some oopsies

Matt McKegg committed on 7/8/2016, 2:32:33 AM
Parent: 4ae9282d39a3f4b2b43760e4c33d0408c400aa04

Files changed

README.mdchanged
lib/apply-properties.jschanged
test/dom.jschanged
README.mdView
@@ -26,9 +26,9 @@
2626 value: 0
2727 })
2828
2929 var element = h('div.cool', {
30- class: ['cool', state.text],
30 + classList: ['cool', state.text],
3131 style: {
3232 'background-color': state.color
3333 }
3434 }, [
lib/apply-properties.jsView
@@ -1,5 +1,5 @@
1-var isObservable = require('./is-observable')
1 +var isObservable = require('../is-observable')
22 var Set = require('../set')
33 var watch = require('../watch')
44 var caches = new global.WeakMap()
55
test/dom.jsView
@@ -8,9 +8,9 @@
88 value: 0
99 })
1010
1111 var element = h('div.cool', {
12- class: ['cool', state.text],
12 + classList: ['cool', state.text],
1313 style: {
1414 'background-color': state.color
1515 }
1616 }, [

Built with git-ssb-web