mirror of
https://github.com/bugsink/bugsink.git
synced 2026-05-02 21:10:19 -05:00
7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
"use strict";
|
|
|
|
function followContainedLink(circleDiv) {
|
|
const link = circleDiv.querySelector("a");
|
|
window.location.href = link.href;
|
|
}
|