(e)
| 653 | } |
| 654 | |
| 655 | handleEvent(e) { |
| 656 | const url = new URL(window.location); |
| 657 | url.searchParams.set("example", this.example); |
| 658 | url.searchParams.delete("code"); |
| 659 | window.history.replaceState({ path: url.toString() }, null, url.toString()); |
| 660 | this.loadExample(this.example); |
| 661 | } |
| 662 | |
| 663 | setValueFromUrl() { |
| 664 | const url = new URL(window.location); |
nothing calls this directly
no test coverage detected