|
@@ -28,6 +28,9 @@ export function clamp(value, min, max) {
|
|
return Math.min(Math.max(value, min), max);
|
|
return Math.min(Math.max(value, min), max);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+// NOTE: inconsistent behavior between browsers when it comes to
|
|
|
|
+// whether the newly opened tab gets focused or not, potentially
|
|
|
|
+// depending on the event that this function is called from
|
|
export function openURLInNewTab(url, focus = true) {
|
|
export function openURLInNewTab(url, focus = true) {
|
|
const newWindow = window.open(url, '_blank', 'noopener,noreferrer');
|
|
const newWindow = window.open(url, '_blank', 'noopener,noreferrer');
|
|
|
|
|