(target)
| 757 | // ==== Story & Highlight ==== |
| 758 | // ================================ |
| 759 | async function storyOnMouseIn(target) { |
| 760 | let sectionNode = storyGetSectionNode(target); |
| 761 | let url = await storyGetUrl(target, sectionNode); |
| 762 | target.setAttribute("href", url); |
| 763 | } |
| 764 | |
| 765 | async function storyOnClicked(target) { |
| 766 | // extract url from target story and download or open it |
no test coverage detected