mirror of
https://github.com/bugsink/bugsink.git
synced 2025-12-21 13:00:13 -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;
|
|
}
|