(type)
| 31 | } |
| 32 | |
| 33 | function createElementDoc(type) { |
| 34 | switch (type) { |
| 35 | case 'svg': |
| 36 | case 'path': |
| 37 | return document.createElementNS("http://www.w3.org/2000/svg", type); |
| 38 | default: |
| 39 | return document.createElement(type); |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | function appendElement(parent, children) { |
| 44 | if (Array.isArray(children)) { |