Commit 78634002 authored by Mingsong's avatar Mingsong Committed by Mingsong Hu
Browse files

Issue #3277634 by Mingsong: Opening the event in a new tab does not work

parent cbbdb332
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@
      function gotoURL(url) {
        let eventURL = new URL(url, location.origin);
        if (eventURL.origin !== "null") {
          window.location = url;
          window.open(url, '_blank').focus();
        }
      }