Browse Source

Document EOL for Classic Edge

Alexandru Dima 4 years ago
parent
commit
92d6800a00

+ 1 - 0
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
 

+ 1 - 1
website/index.html

@@ -56,7 +56,7 @@
 					<p>The Monaco Editor is the code editor that powers <a href="https://github.com/Microsoft/vscode">VS Code</a>.
 					A good page describing the code editor's features is <a href="https://code.visualstudio.com/docs/editor/editingevolved">here</a>.</p>
 
-					<p>It is licensed under the MIT License and supports Classic Edge, Edge, Chrome, Firefox, Safari and Opera.</p>
+					<p>It is licensed under the MIT License and supports Edge, Chrome, Firefox, Safari and Opera.</p>
 
 					<p>The Monaco editor is <span style="font-weight:bold;color:#ff5722;">not</span> supported in mobile browsers or mobile web frameworks. </p>
 

+ 1 - 1
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