mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00: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;
|
|
}
|