* Get outerHTML of elements, taking care * of SVG elements in IE as well.
(el)
| 9300 | * of SVG elements in IE as well. |
| 9301 | */ |
| 9302 | function getOuterHTML (el) { |
| 9303 | if (el.outerHTML) { |
| 9304 | return el.outerHTML |
| 9305 | } else { |
| 9306 | var container = document.createElement('div'); |
| 9307 | container.appendChild(el.cloneNode(true)); |
| 9308 | return container.innerHTML |
| 9309 | } |
| 9310 | } |
| 9311 | |
| 9312 | Vue$3.compile = compileToFunctions; |
| 9313 |