(svg)
| 722 | |
| 723 | |
| 724 | function createSVG(svg) { |
| 725 | var content = create(FRAGMENT); |
| 726 | var template = create('div'); |
| 727 | template.innerHTML = '<svg xmlns="http://www.w3.org/2000/svg">' + svg + '</svg>'; |
| 728 | append(content, template.firstChild.childNodes); |
| 729 | return content; |
| 730 | } |
| 731 | }(document); |
| 732 | |
| 733 | /** |