(e)
| 161 | } |
| 162 | |
| 163 | onClickLookupCodeButton (e) { |
| 164 | this.ppc = $('.input-ppc').val() |
| 165 | if (!this.ppc) { |
| 166 | this.statusMessage('You must enter a code.', 'error') |
| 167 | return |
| 168 | } |
| 169 | this.ppcInfo = [] |
| 170 | if (typeof this.render === 'function') { |
| 171 | this.render() |
| 172 | } |
| 173 | return this.loadPrepaid(this.dashedPPC()) |
| 174 | } |
| 175 | |
| 176 | onClickRedeemCodeButton (e) { |
| 177 | this.ppc = $('.input-ppc').val() |
nothing calls this directly
no test coverage detected