Restore title-url functionality on group titles
This commit is contained in:
parent
6af666b58c
commit
79779eb721
3 changed files with 21 additions and 2 deletions
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue