Commit 44c8716b authored by barnettZQG's avatar barnettZQG
Browse files

Merge branch 'V3.7' into publiccloud

No related merge requests found
Showing with 6 additions and 2 deletions
+6 -2
......@@ -125,8 +125,12 @@ function getRenderArr(routes) {
}
export function openInNewTab(url) {
var win = window.open(url, '_blank');
win.focus();
try{
var win = window.open(url, '_blank');
win.focus();
}catch(e){
console.log(e)
}
}
/**
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment