Skip to content

Commit 44c84ba

Browse files
authored
Evergreen language updates and removal (#9528)
1 parent 760ee0d commit 44c84ba

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

docs/examples/accessibility/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,8 @@ A simple way to achieve this is to use the HTML
7878
polyfill:
7979

8080
```html
81-
<!-- This map is for aesthetic purposes only, and can not be interacted with! -->
81+
<!-- This map is for aesthetic purposes only, and can not be interacted with due to the 'inert' property! -->
8282
<div id='decorative-map' inert></div>
83-
<script src='https://unpkg.com/wicg-inert@latest/dist/inert.min.js'></script>
8483
```
8584

8685
### Utilizing plugins

src/dom/PosAnimation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import * as DomUtil from '../dom/DomUtil.js';
77
* @class PosAnimation
88
* @aka L.PosAnimation
99
* @inherits Evented
10-
* Used internally for panning animations, utilizing CSS Transitions for modern browsers and a timer fallback for IE6-9.
10+
* Used internally for panning animations and utilizing CSS Transitions for modern browsers.
1111
*
1212
* @example
1313
* ```js

src/layer/VideoOverlay.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ export const VideoOverlay = ImageOverlay.extend({
3737

3838
// @option keepAspectRatio: Boolean = true
3939
// Whether the video will save aspect ratio after the projection.
40-
// Relevant for supported browsers. See [browser compatibility](https://developer.mozilla.org/en-US/docs/Web/CSS/object-fit)
4140
keepAspectRatio: true,
4241

4342
// @option muted: Boolean = false

0 commit comments

Comments
 (0)