(id)
| 11 | } |
| 12 | |
| 13 | function removeContainer(id) { |
| 14 | var el = document.getElementById(id); |
| 15 | if (el) { |
| 16 | el.parentNode.removeChild(el); |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | function getContainer(id) { |
| 21 | return document.getElementById(id); |
no outgoing calls
no test coverage detected