()
| 550 | navigate("/", "/"); |
| 551 | |
| 552 | function close() { |
| 553 | const err = new Error("User cancelled"); |
| 554 | Object.defineProperty(err, "code", { |
| 555 | value: 0, |
| 556 | }); |
| 557 | reject(err); |
| 558 | $page.hide(); |
| 559 | } |
| 560 | |
| 561 | function updateSelectionCount($count) { |
| 562 | if ($count) { |
nothing calls this directly
no test coverage detected