diff --git a/CHANGELOG.md b/CHANGELOG.md index d060f896..16f18bd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * improves input on Android (using Gboard) * automatically switches to high contrast when the OS is using high contrast (doesn't work in Firefox). Can be turned off via `autoDetectHighContrast`. +* the editor no longer supports classical Edge, which has reached End of Support on March 9th, 2021. See https://docs.microsoft.com/en-us/lifecycle/faq/internet-explorer-microsoft-edge#what-is-the-lifecycle-policy-for-microsoft-edge ### Thank you diff --git a/website/index.html b/website/index.html index 2bde6773..5cc7ee3d 100644 --- a/website/index.html +++ b/website/index.html @@ -56,7 +56,7 @@
The Monaco Editor is the code editor that powers VS Code. A good page describing the code editor's features is here.
-It is licensed under the MIT License and supports Classic Edge, Edge, Chrome, Firefox, Safari and Opera.
+It is licensed under the MIT License and supports Edge, Chrome, Firefox, Safari and Opera.
The Monaco editor is not supported in mobile browsers or mobile web frameworks.
diff --git a/website/playground/new-samples/interacting-with-the-editor/adding-an-action-to-an-editor-instance/sample.js b/website/playground/new-samples/interacting-with-the-editor/adding-an-action-to-an-editor-instance/sample.js index 74251110..c4d5c7f9 100644 --- a/website/playground/new-samples/interacting-with-the-editor/adding-an-action-to-an-editor-instance/sample.js +++ b/website/playground/new-samples/interacting-with-the-editor/adding-an-action-to-an-editor-instance/sample.js @@ -13,7 +13,7 @@ var editor = monaco.editor.create(document.getElementById("container"), { }); // Explanation: -// Press F1 (Alt-F1 in Edge) => the action will appear and run if it is enabled +// Press F1 => the action will appear and run if it is enabled // Press Ctrl-F10 => the action will run if it is enabled // Press Chord Ctrl-K, Ctrl-M => the action will run if it is enabled