Every line of 'openlink()' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
60 function open_link() { 61 window.open($("#active").attr("link"), '_blank'); 62 }
22 _openLink () { 23 let doc = this.context.editorSession.getDocument() 24 window.open(doc.get(this.getUrlPath()), '_blank') 25 }
486 openLink(url) { 487 return async.async(dart.dynamic, function* openLink() { 488 }); 489 }
268 openLink(url: string) { 269 fin.desktop.System.openUrlWithBrowser(url) 270 }
40 open_link(link: string) { 41 window.open(link, '_blank'); 42 }
39 openLink(link) { 40 if (link.link.newWindow) { 41 window.open(link.link.value); 42 } else { 43 this.stateService.go(link.link.value); 44 } 45 }
316 openLink: function openLink(window, url) { 317 if (url !== '#') { 318 if (url.indexOf('http') === -1) { 319 url = 'http://' + url; 320 } 321 osAPI.openLink(url); 322 } 323 324 return false; 325 },
325 openLink(url: string) { 326 this.$interop.openUrl(url); 327 }
157 openLink(url: string) { 158 shell.openExternal(url); 159 trackEvent('Outbound Link', 'Click', url); 160 }