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 @@
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.