(text)
| 13 | } |
| 14 | |
| 15 | addDescription(text){ |
| 16 | let span = this.querySelector('.radio__label__primary'); |
| 17 | let desc = document.createElement('span'); |
| 18 | desc.classList.add('small-text'); |
| 19 | desc.innerHTML = text; |
| 20 | |
| 21 | span.appendChild(document.createElement('br')); |
| 22 | span.appendChild(desc); |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Get the Shipping rate value |
nothing calls this directly
no outgoing calls
no test coverage detected