Skip to content

Commit

Permalink
@rcrooks fixed a couple of docs link and a jsdoc comment. closes #2987
Browse files Browse the repository at this point in the history
  • Loading branch information
rcrooks authored and gkatsev committed Jan 15, 2016
1 parent c901fce commit d448acd
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ CHANGELOG
## HEAD (Unreleased)
* @gkasev updated vjs to correctly return already created player when given an element ([view](https://github.com/videojs/video.js/pull/3006))
* @mister-ben updated CDN urls in setup guide ([view](https://github.com/videojs/video.js/pull/2984))
* @rcrooks fixed a couple of docs link and a jsdoc comment ([view](https://github.com/videojs/video.js/pull/2987))

--------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/options.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,5 +134,5 @@ notation.
<video ... data-setup='{ "controlBar": { "muteToggle": false } }'></video>
```

The [components guide](components.md) has an excellent breakdown of the structure of a player, you
The [components guide](./components.md) has an excellent breakdown of the structure of a player, you
just need to remember to nest child components in a `children` array for each level.
2 changes: 1 addition & 1 deletion docs/guides/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
-------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ With Video.js you just use an HTML5 video tag to embed a video. Video.js will th

> Note: The `data-setup` attribute described here should not be used if you use the alternative setup described in the next section.
1. The 'data-setup' Attribute tells Video.js to automatically set up the video when the page is ready, and read any options (in JSON format) from the attribute (see [options](options.md)). There are other methods for initializing the player, but this is the easiest.
1. The 'data-setup' Attribute tells Video.js to automatically set up the video when the page is ready, and read any options (in JSON format) from the attribute (see [options](./options.md)). There are other methods for initializing the player, but this is the easiest.

2. The 'id' Attribute: Should be used and unique for every video on the same page.

Expand Down
2 changes: 1 addition & 1 deletion src/js/tracks/html-track-element-list.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @file html-track-element.js
* @file html-track-element-list.js
*/

import * as browser from '../utils/browser.js';
Expand Down
4 changes: 4 additions & 0 deletions src/js/tracks/html-track-element.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/**
* @file html-track-element.js
*/

import * as browser from '../utils/browser.js';
import document from 'global/document';
import EventTarget from '../event-target';
Expand Down

0 comments on commit d448acd

Please sign in to comment.