Skip to content
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: 1 addition & 2 deletions docs/examples/accessibility/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,8 @@ A simple way to achieve this is to use the HTML
polyfill:

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

### Utilizing plugins
Expand Down
2 changes: 1 addition & 1 deletion src/dom/PosAnimation.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as DomUtil from '../dom/DomUtil.js';
* @class PosAnimation
* @aka L.PosAnimation
* @inherits Evented
* Used internally for panning animations, utilizing CSS Transitions for modern browsers and a timer fallback for IE6-9.
* Used internally for panning animations and utilizing CSS Transitions for modern browsers.
*
* @example
* ```js
Expand Down
1 change: 0 additions & 1 deletion src/layer/VideoOverlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export const VideoOverlay = ImageOverlay.extend({

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

// @option muted: Boolean = false
Expand Down