()
| 661 | } |
| 662 | |
| 663 | setValueFromUrl() { |
| 664 | const url = new URL(window.location); |
| 665 | if (!url.searchParams.has("example")) return; |
| 666 | this.loadExample(url.searchParams.get("example")); |
| 667 | } |
| 668 | |
| 669 | async loadExample(example) { |
| 670 | if (example == "") { |
no test coverage detected