diff --git a/README.md b/README.md index e397e41f..214eac1c 100644 --- a/README.md +++ b/README.md @@ -43,9 +43,6 @@ It is recommended to develop against the `dev` version, and in production to use Create [issues](https://github.com/Microsoft/monaco-editor/issues) in this repository for anything related to the Monaco Editor. Always mention **the version** of the editor when creating issues and **the browser** you're having trouble in. Please search for existing issues to avoid duplicates. -## Known issues -In IE 11, the editor must be surrounded in the body element, otherwise the hit testing performed for mouse operations does not work. You can inspect this using F12 and click on the body element and confirm that visually it surrounds the editor. - ## FAQ ❓ **What is the relationship between VS Code and the Monaco Editor?** @@ -87,6 +84,10 @@ No. * We have experimented with Emscripten to compile the C library to asm.js, but performance was very poor even in Firefox (10x slower) and extremely poor in Chrome (100x slower). * We can revisit this once WebAssembly gets traction in the major browsers, but we will still need to consider the browser matrix we support, i.e. if we support IE11 and only Edge will add WebAssembly support, what will the experience be in IE11, etc. +❓ **What about IE 11 support?** + +* The Monaco Editor no longer supports IE 11. The last version that was tested on IE 11 is `0.14.0`. + ## Development setup Please see [CONTRIBUTING](./CONTRIBUTING.md) diff --git a/test/playground.generated/interacting-with-the-editor-adding-an-action-to-an-editor-instance.html b/test/playground.generated/interacting-with-the-editor-adding-an-action-to-an-editor-instance.html index aeaa7366..18b66b1a 100644 --- a/test/playground.generated/interacting-with-the-editor-adding-an-action-to-an-editor-instance.html +++ b/test/playground.generated/interacting-with-the-editor-adding-an-action-to-an-editor-instance.html @@ -51,7 +51,7 @@ var editor = monaco.editor.create(document.getElementById("container"), { }); // Explanation: -// Press F1 (Alt-F1 in IE) => the action will appear and run if it is enabled +// Press F1 (Alt-F1 in Edge) => 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 @@ -92,4 +92,4 @@ editor.addAction({ }); - \ No newline at end of file + diff --git a/website/index.html b/website/index.html index 2d802822..cf7d1e99 100644 --- a/website/index.html +++ b/website/index.html @@ -57,7 +57,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 IE 11, Edge, Chrome, Firefox, Safari and Opera.

+

It is licensed under the MIT License and supports Classic Edge, 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 18e2ec7c..74251110 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 IE) => the action will appear and run if it is enabled +// Press F1 (Alt-F1 in Edge) => 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