1
0
mirror of https://github.com/videojs/video.js.git synced 2025-07-09 01:15:31 +02:00

@rcrooks fixed a couple of docs link and a jsdoc comment. closes #2987

This commit is contained in:
rcrooks
2016-01-15 15:33:15 -05:00
committed by Gary Katsevman
parent c901fcee6b
commit d448acd224
6 changed files with 9 additions and 4 deletions

View File

@ -17,7 +17,7 @@ You may have already done this step. Code up something interesting and then wrap
});
};
When it's activated, `this` will be the Video.js player your plugin is attached to. You can use anything you'd like in the [Video.js API](api.md) when you're writing a plugin: change the `src`, mess up the DOM, or listen for and emit your own events.
When it's activated, `this` will be the Video.js player your plugin is attached to. You can use anything you'd like in the [Video.js API](./api.md) when you're writing a plugin: change the `src`, mess up the DOM, or listen for and emit your own events.
Step 2: Registering A Plugin
-------------------------------