()
| 108 | } |
| 109 | |
| 110 | created(){ |
| 111 | this.addEventListener("input", this.changed); |
| 112 | |
| 113 | let event = new CustomEvent(`checkout:${this.componentType}:created`, { detail: this }); |
| 114 | document.dispatchEvent(event); |
| 115 | } |
| 116 | |
| 117 | changed(innerEvent){ |
| 118 | let input = this.querySelector(this.selectors.input); |
no outgoing calls
no test coverage detected