You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/plugins.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -246,7 +246,7 @@ Note that the [plugin generator](https://github.com/videojs/generator-videojs-pl
246
246
247
247
### Advanced Example Advanced Plugin
248
248
249
-
What follows is a complete ES6 advanced plugin that logs a custom message when the player's state changes between playing and paused. It uses all the described advanced features:
249
+
What follows is a complete ES6 advanced plugin that logs a custom message when the player's state changes between playing and pause. It uses all the described advanced features:
250
250
251
251
```js
252
252
importvideojsfrom'video.js';
@@ -258,7 +258,7 @@ class Advanced extends Plugin {
258
258
constructor(player, options) {
259
259
super(player, options);
260
260
261
-
// Whenever the player emits a playing or paused event, we update the
261
+
// Whenever the player emits a playing or pause event, we update the
0 commit comments