Restore title-url functionality on group titles

This commit is contained in:
Svilen Markov
2024-11-17 09:36:46 +00:00
parent 6af666b58c
commit 79779eb721
3 changed files with 21 additions and 2 deletions

View File

@@ -27,3 +27,7 @@ export function isElementVisible(element) {
export function clamp(value, min, max) {
return Math.min(Math.max(value, min), max);
}
export function openURLInNewTab(url) {
window.open(url, '_blank', 'noopener,noreferrer')?.focus();
}