(index)
| 131 | |
| 132 | // insert commented content into DOM, mark as complete and trigger event |
| 133 | function insertComment(index) { |
| 134 | this.element.insertAdjacentHTML(this.insert, this.element.childNodes[index].textContent); |
| 135 | dispatchEvent.apply(this); |
| 136 | } |
| 137 | |
| 138 | // dispatch CustomEvent if supported with media query and insert type detail |
| 139 | function dispatchEvent() { |
nothing calls this directly
no outgoing calls
no test coverage detected