mirror of
https://github.com/bugsink/bugsink.git
synced 2026-02-21 13:58:47 -06: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;
|
|
}
|