mirror of
https://github.com/NovaGM/ModuleBuilder.git
synced 2024-08-15 00:23:33 +00:00
5 lines
No EOL
186 B
JavaScript
5 lines
No EOL
186 B
JavaScript
export const openExternal = (url) => {
|
|
// Discord makes new tabs / windows (via window.open) use electron.shell.openExternal internally, so just use window.open
|
|
|
|
window.open(url);
|
|
}; |