Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to mention the dropped support for old browsers IE9 and IE10 #5376

Merged
merged 2 commits into from
Jan 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,9 @@ where X.Y.Z is the semver of most recent plotly.js release.

## [1.49.5] -- 2019-09-18

### Changed
- Drop support for IE10 and IE9 as part of browserify upgrade [#4168]

### Fixed
- Clear rejected promises from queue when calling `Plotly.react` [#4197]
- Do not attempt to remove non-existing mapbox layout source and layers [#4197]
Expand Down
4 changes: 0 additions & 4 deletions devtools/test_dashboard/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
</div>
<div id="snapshot"></div>

<!-- uncomment below for IE9/10 support -->
<!-- <script>if(typeof window.Int16Array !== 'function')document.write("<scri"+"pt src='../../dist/extras/typedarray.min.js'></scr"+"ipt>");</script>
<script>document.write("<scri"+"pt src='../../dist/extras/request_animation_frame.js'></scr"+"ipt>");</script> -->

<script src="../../dist/extras/mathjax/MathJax.js?config=TeX-AMS-MML_SVG"></script>
<script id="source" src="../../build/plotly.js" charset="utf-8"></script>
<script src="../../build/test_dashboard-bundle.js" charset="utf-8"></script>
Expand Down
9 changes: 0 additions & 9 deletions dist/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,6 @@ or the un-minified version as:
<script src="plotly.js" charset="utf-8"></script>
```

### To support IE9

*Before* the plotly.js script tag, add:

```html
<script>if(typeof window.Int16Array !== 'function')document.write("<scri"+"pt src='extras/typedarray.min.js'></scr"+"ipt>");</script>
<script>document.write("<scri"+"pt src='extras/request_animation_frame.js'></scr"+"ipt>");</script>
```

### To support MathJax

*Before* the plotly.js script tag, add:
Expand Down
9 changes: 0 additions & 9 deletions tasks/stats.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,6 @@ function getInfoContent() {
'<script src="plotly.js" charset="utf-8"></script>',
'```',
'',
'### To support IE9',
'',
'*Before* the plotly.js script tag, add:',
'',
'```html',
'<script>if(typeof window.Int16Array !== \'function\')document.write("<scri"+"pt src=\'extras/typedarray.min.js\'></scr"+"ipt>");</script>',
'<script>document.write("<scri"+"pt src=\'extras/request_animation_frame.js\'></scr"+"ipt>");</script>',
'```',
'',
'### To support MathJax',
'',
'*Before* the plotly.js script tag, add:',
Expand Down