diff --git a/docs/fiddles/menus/customize-menus/index.html b/docs/fiddles/menus/customize-menus/index.html index 07b3069796c..e8b354f2a18 100644 --- a/docs/fiddles/menus/customize-menus/index.html +++ b/docs/fiddles/menus/customize-menus/index.html @@ -21,7 +21,7 @@

Open the - full API documentation(opens in new window) See the full context-menu event documentation for all the available properties. diff --git a/docs/fiddles/menus/customize-menus/main.js b/docs/fiddles/menus/customize-menus/main.js index 38774c6374e..dc4174e9525 100644 --- a/docs/fiddles/menus/customize-menus/main.js +++ b/docs/fiddles/menus/customize-menus/main.js @@ -159,7 +159,7 @@ const template = [ { label: 'Learn More', click: () => { - shell.openExternal('http://electron.atom.io') + shell.openExternal('https://electronjs.org') } } ] diff --git a/docs/fiddles/menus/shortcuts/index.html b/docs/fiddles/menus/shortcuts/index.html index 98787c8f5b8..6851357980c 100644 --- a/docs/fiddles/menus/shortcuts/index.html +++ b/docs/fiddles/menus/shortcuts/index.html @@ -21,10 +21,10 @@

Open the full documentation for the - Menu, - Accelerator, + Menu, + Accelerator, and - globalShortcut + globalShortcut APIs in your browser.

diff --git a/docs/fiddles/native-ui/dialogs/error-dialog/index.html b/docs/fiddles/native-ui/dialogs/error-dialog/index.html index edda33774dc..2d516c28b68 100644 --- a/docs/fiddles/native-ui/dialogs/error-dialog/index.html +++ b/docs/fiddles/native-ui/dialogs/error-dialog/index.html @@ -23,7 +23,7 @@

Open the - + full API documentation (opens in new window) in your browser. diff --git a/docs/fiddles/native-ui/dialogs/information-dialog/index.html b/docs/fiddles/native-ui/dialogs/information-dialog/index.html index 2bffb50d995..5600b653874 100644 --- a/docs/fiddles/native-ui/dialogs/information-dialog/index.html +++ b/docs/fiddles/native-ui/dialogs/information-dialog/index.html @@ -23,7 +23,7 @@

Open the - + full API documentation (opens in new window) in your browser. diff --git a/docs/fiddles/native-ui/dialogs/open-file-or-directory/index.html b/docs/fiddles/native-ui/dialogs/open-file-or-directory/index.html index 6937b61b891..df96f2e8108 100644 --- a/docs/fiddles/native-ui/dialogs/open-file-or-directory/index.html +++ b/docs/fiddles/native-ui/dialogs/open-file-or-directory/index.html @@ -23,7 +23,7 @@

Open the - + full API documentation (opens in new window) in your browser. diff --git a/docs/fiddles/native-ui/dialogs/save-dialog/index.html b/docs/fiddles/native-ui/dialogs/save-dialog/index.html index 587467003c8..b7ceaee7b12 100644 --- a/docs/fiddles/native-ui/dialogs/save-dialog/index.html +++ b/docs/fiddles/native-ui/dialogs/save-dialog/index.html @@ -23,7 +23,7 @@

Open the - + full API documentation (opens in new window) in your browser. diff --git a/docs/fiddles/native-ui/external-links-file-manager/external-links/index.html b/docs/fiddles/native-ui/external-links-file-manager/external-links/index.html index 953dc24bc87..f96fae00f79 100644 --- a/docs/fiddles/native-ui/external-links-file-manager/external-links/index.html +++ b/docs/fiddles/native-ui/external-links-file-manager/external-links/index.html @@ -27,7 +27,7 @@ const { shell } = require('electron') const exLinksBtn = document.getElementById('open-ex-links') exLinksBtn.addEventListener('click', (event) => { - shell.openExternal('http://electron.atom.io') + shell.openExternal('https://electronjs.org') }) diff --git a/docs/fiddles/native-ui/external-links-file-manager/external-links/renderer.js b/docs/fiddles/native-ui/external-links-file-manager/external-links/renderer.js index 931c94446c2..14ed2d979f6 100644 --- a/docs/fiddles/native-ui/external-links-file-manager/external-links/renderer.js +++ b/docs/fiddles/native-ui/external-links-file-manager/external-links/renderer.js @@ -3,7 +3,7 @@ const { shell } = require('electron') const exLinksBtn = document.getElementById('open-ex-links') exLinksBtn.addEventListener('click', (event) => { - shell.openExternal('http://electron.atom.io') + shell.openExternal('https://electronjs.org') }) const OpenAllOutboundLinks = () => { diff --git a/docs/fiddles/native-ui/external-links-file-manager/index.html b/docs/fiddles/native-ui/external-links-file-manager/index.html index 6c57fd034fb..c4b41b99055 100644 --- a/docs/fiddles/native-ui/external-links-file-manager/index.html +++ b/docs/fiddles/native-ui/external-links-file-manager/index.html @@ -17,7 +17,7 @@

This module works in both the main and renderer process.

Open the - + full API documentation (opens in new window) in your browser. diff --git a/docs/fiddles/native-ui/external-links-file-manager/renderer.js b/docs/fiddles/native-ui/external-links-file-manager/renderer.js index 35af89d33ca..29c2529fa33 100644 --- a/docs/fiddles/native-ui/external-links-file-manager/renderer.js +++ b/docs/fiddles/native-ui/external-links-file-manager/renderer.js @@ -9,5 +9,5 @@ fileManagerBtn.addEventListener('click', (event) => { }) exLinksBtn.addEventListener('click', (event) => { - shell.openExternal('http://electron.atom.io') + shell.openExternal('https://electronjs.org') }) diff --git a/docs/fiddles/native-ui/notifications/index.html b/docs/fiddles/native-ui/notifications/index.html index 2aae12ee308..2848ad6d552 100644 --- a/docs/fiddles/native-ui/notifications/index.html +++ b/docs/fiddles/native-ui/notifications/index.html @@ -26,7 +26,7 @@

Open the - + full API documentation(opens in new window) in your browser. diff --git a/docs/fiddles/native-ui/tray/index.html b/docs/fiddles/native-ui/tray/index.html index e5d69043636..2a330342f2d 100644 --- a/docs/fiddles/native-ui/tray/index.html +++ b/docs/fiddles/native-ui/tray/index.html @@ -15,7 +15,7 @@

Open the - + full API documentation (opens in new window) in your browser. @@ -108,7 +108,7 @@ ipc.on('tray-removed', function () { On Linux distributions that only have app indicator support, users will need to install libappindicator1 to make the tray icon work. See the - + full API documentation (opens in new window) for more details about using Tray on Linux. diff --git a/docs/fiddles/system/protocol-handler/launch-app-from-URL-in-another-app/index.html b/docs/fiddles/system/protocol-handler/launch-app-from-URL-in-another-app/index.html index 8839a0806e5..1c89c4ce49b 100644 --- a/docs/fiddles/system/protocol-handler/launch-app-from-URL-in-another-app/index.html +++ b/docs/fiddles/system/protocol-handler/launch-app-from-URL-in-another-app/index.html @@ -13,7 +13,7 @@

The app module provides methods for handling protocols.

These methods allow you to set and unset the protocols your app should be the default app for. Similar to when a browser asks to be your default for viewing web pages.

-

Open the full app API documentation(opens in new window) in your browser.

+

Open the full app API documentation(opens in new window) in your browser.

@@ -89,4 +89,4 @@ - \ No newline at end of file + diff --git a/docs/fiddles/system/system-information/get-version-information/index.html b/docs/fiddles/system/system-information/get-version-information/index.html index 0867bc3ad7d..b19df1f2b53 100644 --- a/docs/fiddles/system/system-information/get-version-information/index.html +++ b/docs/fiddles/system/system-information/get-version-information/index.html @@ -15,7 +15,7 @@

The process module is built into Node.js (therefore you can use this in both the main and renderer processes) and in Electron apps this object has a few more useful properties on it.

The example below gets the version of Electron in use by the app.

-

See the process documentation (opens in new window) for more.

+

See the process documentation (opens in new window) for more.

diff --git a/docs/fiddles/windows/manage-windows/frameless-window/index.html b/docs/fiddles/windows/manage-windows/frameless-window/index.html index 469c97f27d4..3f8b1b90552 100644 --- a/docs/fiddles/windows/manage-windows/frameless-window/index.html +++ b/docs/fiddles/windows/manage-windows/frameless-window/index.html @@ -22,7 +22,7 @@

Open the - + full API documentation (opens in new window) in your browser. @@ -59,7 +59,7 @@

For more details, see the - + Frameless Window documentation. diff --git a/docs/fiddles/windows/manage-windows/manage-window-state/index.html b/docs/fiddles/windows/manage-windows/manage-window-state/index.html index 1a61cb4ee54..e9e39ceccc1 100644 --- a/docs/fiddles/windows/manage-windows/manage-window-state/index.html +++ b/docs/fiddles/windows/manage-windows/manage-window-state/index.html @@ -22,7 +22,7 @@

Open the - + full API documentation (opens in new window) in your browser. @@ -47,7 +47,7 @@ There are a lot of methods for controlling the state of the window such as the size, location, and focus status as well as events to listen to for window changes. Visit the - + documentation (opens in new window) for the full list. diff --git a/docs/fiddles/windows/manage-windows/new-window/renderer.js b/docs/fiddles/windows/manage-windows/new-window/renderer.js index 8b21383e6ba..43423e84594 100644 --- a/docs/fiddles/windows/manage-windows/new-window/renderer.js +++ b/docs/fiddles/windows/manage-windows/new-window/renderer.js @@ -15,5 +15,5 @@ newWindowBtn.addEventListener('click', (event) => { link.addEventListener('click', (e) => { e.preventDefault() - shell.openExternal("http://electron.atom.io/docs/api/browser-window") + shell.openExternal("https://electronjs.org/docs/api/browser-window") }) diff --git a/docs/fiddles/windows/manage-windows/window-events/index.html b/docs/fiddles/windows/manage-windows/window-events/index.html index 806346e52aa..d244bf16750 100644 --- a/docs/fiddles/windows/manage-windows/window-events/index.html +++ b/docs/fiddles/windows/manage-windows/window-events/index.html @@ -22,7 +22,7 @@

Open the - + full API documentation (opens in new window) in your browser.