(domNode, children, projectionOptions)
| 571 | return textUpdated; |
| 572 | }; |
| 573 | var addChildren = function (domNode, children, projectionOptions) { |
| 574 | if (!children) { |
| 575 | return; |
| 576 | } |
| 577 | for (var i = 0; i < children.length; i++) { |
| 578 | createDom(children[i], domNode, undefined, projectionOptions); |
| 579 | } |
| 580 | }; |
| 581 | var initPropertiesAndChildren = function (domNode, vnode, projectionOptions) { |
| 582 | addChildren(domNode, vnode.children, projectionOptions); |
| 583 | // children before properties, needed for value property of <select>. |
no outgoing calls
no test coverage detected