2013-11-05 03:03:51 +03:00
|
|
|
<!-- GENERATED FROM SOURCE -->
|
|
|
|
|
|
|
|
# vjs.MediaLoader
|
|
|
|
|
|
|
|
__EXTENDS__: [vjs.Component](vjs.Component.md)
|
|
|
|
__DEFINED IN__: [src/js/media/loader.js#L7](https://github.com/videojs/video.js/blob/master/src/js/media/loader.js#L7)
|
|
|
|
|
|
|
|
The Media Loader is the component that decides which playback technology to load
|
|
|
|
when the player is initialized.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
## INDEX
|
|
|
|
|
|
|
|
- [METHODS](#methods)
|
|
|
|
- [init](#init-player-options-ready-)
|
|
|
|
- [addChild](#addchild-child-options-) _`inherited`_
|
|
|
|
- [addClass](#addclass-classtoadd-) _`inherited`_
|
|
|
|
- [buildCSSClass](#buildcssclass) _`inherited`_
|
|
|
|
- [children](#children) _`inherited`_
|
|
|
|
- [contentEl](#contentel) _`inherited`_
|
|
|
|
- [createEl](#createel-tagname-attributes-) _`inherited`_
|
|
|
|
- [dimensions](#dimensions-width-height-) _`inherited`_
|
|
|
|
- [dispose](#dispose) _`inherited`_
|
|
|
|
- [el](#el) _`inherited`_
|
2014-02-19 00:43:40 +03:00
|
|
|
- [enableTouchActivity](#enabletouchactivity) _`inherited`_
|
2013-11-05 03:03:51 +03:00
|
|
|
- [getChild](#getchild-name-) _`inherited`_
|
|
|
|
- [getChildById](#getchildbyid-id-) _`inherited`_
|
|
|
|
- [height](#height-num-skiplisteners-) _`inherited`_
|
|
|
|
- [hide](#hide) _`inherited`_
|
|
|
|
- [id](#id) _`inherited`_
|
|
|
|
- [initChildren](#initchildren) _`inherited`_
|
|
|
|
- [name](#name) _`inherited`_
|
|
|
|
- [off](#off-type-fn-) _`inherited`_
|
|
|
|
- [on](#on-type-fn-) _`inherited`_
|
|
|
|
- [one](#one-type-fn-) _`inherited`_
|
|
|
|
- [options](#options-obj-) _`inherited`_
|
|
|
|
- [player](#player) _`inherited`_
|
|
|
|
- [ready](#ready-fn-) _`inherited`_
|
|
|
|
- [removeChild](#removechild-component-) _`inherited`_
|
|
|
|
- [removeClass](#removeclass-classtoremove-) _`inherited`_
|
|
|
|
- [show](#show) _`inherited`_
|
|
|
|
- [trigger](#trigger-type-event-) _`inherited`_
|
|
|
|
- [triggerReady](#triggerready) _`inherited`_
|
|
|
|
- [width](#width-num-skiplisteners-) _`inherited`_
|
|
|
|
|
|
|
|
- [EVENTS](#events)
|
|
|
|
- [resize](#resize-event) _`inherited`_
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
## METHODS
|
|
|
|
|
|
|
|
### addChild( child, [options] )
|
|
|
|
> Adds a child component inside this component
|
|
|
|
>
|
|
|
|
> myComponent.el();
|
|
|
|
> // -> <div class='my-component'></div>
|
|
|
|
> myComonent.children();
|
|
|
|
> // [empty array]
|
|
|
|
>
|
|
|
|
> var myButton = myComponent.addChild('MyButton');
|
|
|
|
> // -> <div class='my-component'><div class="my-button">myButton<div></div>
|
|
|
|
> // -> myButton === myComonent.children()[0];
|
|
|
|
>
|
|
|
|
> Pass in options for child constructors and options for children of the child
|
|
|
|
>
|
2013-11-06 04:12:20 +03:00
|
|
|
> var myButton = myComponent.addChild('MyButton', {
|
|
|
|
> text: 'Press Me',
|
|
|
|
> children: {
|
|
|
|
> buttonChildExample: {
|
|
|
|
> buttonChildOption: true
|
|
|
|
> }
|
|
|
|
> }
|
|
|
|
> });
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __child__ `String|vjs.Component` The class name or instance of a child to add
|
|
|
|
* __options__ `Object` _(OPTIONAL)_ Options, including options to be passed to children of the child.
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component` The child component (created by this process if a string was used)
|
|
|
|
|
2014-02-19 00:43:40 +03:00
|
|
|
_inherited from_: [src/js/component.js#L347](https://github.com/videojs/video.js/blob/master/src/js/component.js#L347)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### addClass( classToAdd )
|
|
|
|
> Add a CSS class name to the component's element
|
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __classToAdd__ `String` Classname to add
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component`
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L663](https://github.com/videojs/video.js/blob/master/src/js/component.js#L663)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### buildCSSClass()
|
|
|
|
> Allows sub components to stack CSS class names
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `String` The constructed class name
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L506](https://github.com/videojs/video.js/blob/master/src/js/component.js#L506)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### children()
|
|
|
|
> Get an array of all child components
|
|
|
|
>
|
|
|
|
> var kids = myComponent.children();
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `Array` The children
|
|
|
|
|
2014-02-19 00:43:40 +03:00
|
|
|
_inherited from_: [src/js/component.js#L281](https://github.com/videojs/video.js/blob/master/src/js/component.js#L281)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### contentEl()
|
|
|
|
> Return the component's DOM element for embedding content.
|
|
|
|
> Will either be el_ or a new element defined in createEl.
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `Element`
|
|
|
|
|
2014-02-19 00:43:40 +03:00
|
|
|
_inherited from_: [src/js/component.js#L224](https://github.com/videojs/video.js/blob/master/src/js/component.js#L224)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### createEl( [tagName], [attributes] )
|
|
|
|
> Create the component's DOM element
|
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __tagName__ `String` _(OPTIONAL)_ Element's node type. e.g. 'div'
|
|
|
|
* __attributes__ `Object` _(OPTIONAL)_ An object of element attributes that should be set on the element
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `Element`
|
|
|
|
|
2014-02-19 00:43:40 +03:00
|
|
|
_inherited from_: [src/js/component.js#L194](https://github.com/videojs/video.js/blob/master/src/js/component.js#L194)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### dimensions( width, height )
|
|
|
|
> Set both width and height at the same time
|
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __width__ `Number|String`
|
|
|
|
* __height__ `Number|String`
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component` The component
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L775](https://github.com/videojs/video.js/blob/master/src/js/component.js#L775)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### dispose()
|
|
|
|
> Dispose of the component and all child components
|
|
|
|
|
2014-02-19 00:43:40 +03:00
|
|
|
_inherited from_: [src/js/component.js#L78](https://github.com/videojs/video.js/blob/master/src/js/component.js#L78)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### el()
|
|
|
|
> Get the component's DOM element
|
|
|
|
>
|
|
|
|
> var domEl = myComponent.el();
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `Element`
|
|
|
|
|
2014-02-19 00:43:40 +03:00
|
|
|
_inherited from_: [src/js/component.js#L205](https://github.com/videojs/video.js/blob/master/src/js/component.js#L205)
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### enableTouchActivity()
|
|
|
|
> Report user touch activity when touch events occur
|
|
|
|
>
|
|
|
|
> User activity is used to determine when controls should show/hide. It's
|
|
|
|
> relatively simple when it comes to mouse events, because any mouse event
|
|
|
|
> should show the controls. So we capture mouse events that bubble up to the
|
|
|
|
> player and report activity when that happens.
|
|
|
|
>
|
|
|
|
> With touch events it isn't as easy. We can't rely on touch events at the
|
|
|
|
> player level, because a tap (touchstart + touchend) on the video itself on
|
|
|
|
> mobile devices is meant to turn controls off (and on). User activity is
|
|
|
|
> checked asynchronously, so what could happen is a tap event on the video
|
|
|
|
> turns the controls off, then the touchend event bubbles up to the player,
|
|
|
|
> which if it reported user activity, would turn the controls right back on.
|
|
|
|
> (We also don't want to completely block touch events from bubbling up)
|
|
|
|
>
|
|
|
|
> Also a touchmove, touch+hold, and anything other than a tap is not supposed
|
|
|
|
> to turn the controls back on on a mobile device.
|
|
|
|
>
|
|
|
|
> Here we're setting the default component behavior to report user activity
|
|
|
|
> whenever touch events happen, and this can be turned off by components that
|
|
|
|
> want touch events to act differently.
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L954](https://github.com/videojs/video.js/blob/master/src/js/component.js#L954)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### getChild( name )
|
2013-11-06 04:12:20 +03:00
|
|
|
> Returns a child component with the provided name
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __name__
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component`
|
|
|
|
|
2014-02-19 00:43:40 +03:00
|
|
|
_inherited from_: [src/js/component.js#L315](https://github.com/videojs/video.js/blob/master/src/js/component.js#L315)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### getChildById( id )
|
|
|
|
> Returns a child component with the provided ID
|
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __id__
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component`
|
|
|
|
|
2014-02-19 00:43:40 +03:00
|
|
|
_inherited from_: [src/js/component.js#L298](https://github.com/videojs/video.js/blob/master/src/js/component.js#L298)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### height( [num], [skipListeners] )
|
|
|
|
> Get or set the height of the component (CSS values)
|
2013-11-06 04:12:20 +03:00
|
|
|
>
|
|
|
|
> Setting the video tag dimension values only works with values in pixels.
|
|
|
|
> Percent values will not work.
|
|
|
|
> Some percents can be used, but width()/height() will return the number + %,
|
|
|
|
> not the actual computed width/height.
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __num__ `Number|String` _(OPTIONAL)_ New component height
|
|
|
|
* __skipListeners__ `Boolean` _(OPTIONAL)_ Skip the resize event trigger
|
|
|
|
|
|
|
|
##### RETURNS:
|
2013-11-06 04:12:20 +03:00
|
|
|
* `vjs.Component` This component, when setting the height
|
|
|
|
* `Number|String` The height, when getting
|
2013-11-05 03:03:51 +03:00
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L764](https://github.com/videojs/video.js/blob/master/src/js/component.js#L764)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### hide()
|
2013-11-06 04:12:20 +03:00
|
|
|
> Hide the component element if currently showing
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component`
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L694](https://github.com/videojs/video.js/blob/master/src/js/component.js#L694)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### id()
|
|
|
|
> Get the component's ID
|
|
|
|
>
|
|
|
|
> var id = myComponent.id();
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `String`
|
|
|
|
|
2014-02-19 00:43:40 +03:00
|
|
|
_inherited from_: [src/js/component.js#L243](https://github.com/videojs/video.js/blob/master/src/js/component.js#L243)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### init( player, options, ready )
|
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __player__
|
|
|
|
* __options__
|
|
|
|
* __ready__
|
|
|
|
|
|
|
|
_defined in_: [src/js/media/loader.js#L9](https://github.com/videojs/video.js/blob/master/src/js/media/loader.js#L9)
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### initChildren()
|
|
|
|
> Add and initialize default child components from options
|
|
|
|
>
|
|
|
|
> // when an instance of MyComponent is created, all children in options
|
|
|
|
> // will be added to the instance by their name strings and options
|
|
|
|
> MyComponent.prototype.options_.children = {
|
|
|
|
> myChildComponent: {
|
|
|
|
> myChildOption: true
|
|
|
|
> }
|
|
|
|
> }
|
2014-05-20 20:42:01 +03:00
|
|
|
>
|
|
|
|
> // Or when creating the component
|
|
|
|
> var myComp = new MyComponent(player, {
|
|
|
|
> children: {
|
|
|
|
> myChildComponent: {
|
|
|
|
> myChildOption: true
|
|
|
|
> }
|
|
|
|
> }
|
|
|
|
> });
|
|
|
|
>
|
|
|
|
> The children option can also be an Array of child names or
|
|
|
|
> child options objects (that also include a 'name' key).
|
|
|
|
>
|
|
|
|
> var myComp = new MyComponent(player, {
|
|
|
|
> children: [
|
|
|
|
> 'button',
|
|
|
|
> {
|
|
|
|
> name: 'button',
|
|
|
|
> someOtherOption: true
|
|
|
|
> }
|
|
|
|
> ]
|
|
|
|
> });
|
2013-11-05 03:03:51 +03:00
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L466](https://github.com/videojs/video.js/blob/master/src/js/component.js#L466)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### name()
|
|
|
|
> Get the component's name. The name is often used to reference the component.
|
|
|
|
>
|
|
|
|
> var name = myComponent.name();
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `String`
|
|
|
|
|
2014-02-19 00:43:40 +03:00
|
|
|
_inherited from_: [src/js/component.js#L262](https://github.com/videojs/video.js/blob/master/src/js/component.js#L262)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### off( [type], [fn] )
|
|
|
|
> Remove an event listener from the component's element
|
|
|
|
>
|
|
|
|
> myComponent.off("eventName", myFunc);
|
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __type__ `String` _(OPTIONAL)_ Event type. Without type it will remove all listeners.
|
|
|
|
* __fn__ `Function` _(OPTIONAL)_ Event listener. Without fn it will remove all listeners for a type.
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component`
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L545](https://github.com/videojs/video.js/blob/master/src/js/component.js#L545)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### on( type, fn )
|
|
|
|
> Add an event listener to this component's element
|
|
|
|
>
|
|
|
|
> var myFunc = function(){
|
|
|
|
> var myPlayer = this;
|
|
|
|
> // Do something when the event is fired
|
|
|
|
> };
|
|
|
|
>
|
|
|
|
> myPlayer.on("eventName", myFunc);
|
|
|
|
>
|
|
|
|
> The context will be the component.
|
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __type__ `String` The event type e.g. 'click'
|
|
|
|
* __fn__ `Function` The event listener
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component` self
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L531](https://github.com/videojs/video.js/blob/master/src/js/component.js#L531)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### one( type, fn )
|
|
|
|
> Add an event listener to be triggered only once and then removed
|
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __type__ `String` Event type
|
|
|
|
* __fn__ `Function` Event listener
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component`
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L557](https://github.com/videojs/video.js/blob/master/src/js/component.js#L557)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### options( obj )
|
|
|
|
> Deep merge of options objects
|
|
|
|
>
|
|
|
|
> Whenever a property is an object on both options objects
|
|
|
|
> the two properties will be merged using vjs.obj.deepMerge.
|
|
|
|
>
|
|
|
|
> This is used for merging options for child components. We
|
|
|
|
> want it to be easy to override individual options on a child
|
|
|
|
> component without having to rewrite all the other default options.
|
|
|
|
>
|
|
|
|
> Parent.prototype.options_ = {
|
|
|
|
> children: {
|
|
|
|
> 'childOne': { 'foo': 'bar', 'asdf': 'fdsa' },
|
|
|
|
> 'childTwo': {},
|
|
|
|
> 'childThree': {}
|
|
|
|
> }
|
|
|
|
> }
|
|
|
|
> newOptions = {
|
|
|
|
> children: {
|
|
|
|
> 'childOne': { 'foo': 'baz', 'abc': '123' }
|
|
|
|
> 'childTwo': null,
|
|
|
|
> 'childFour': {}
|
|
|
|
> }
|
|
|
|
> }
|
|
|
|
>
|
|
|
|
> this.options(newOptions);
|
|
|
|
>
|
|
|
|
> RESULT
|
|
|
|
>
|
|
|
|
> {
|
|
|
|
> children: {
|
|
|
|
> 'childOne': { 'foo': 'baz', 'asdf': 'fdsa', 'abc': '123' },
|
|
|
|
> 'childTwo': null, // Disabled. Won't be initialized.
|
|
|
|
> 'childThree': {},
|
|
|
|
> 'childFour': {}
|
|
|
|
> }
|
|
|
|
> }
|
|
|
|
|
|
|
|
##### PARAMETERS:
|
2013-11-06 04:12:20 +03:00
|
|
|
* __obj__ `Object` Object of new option values
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
##### RETURNS:
|
2013-11-06 04:12:20 +03:00
|
|
|
* `Object` A NEW object of this.options_ and obj merged
|
2013-11-05 03:03:51 +03:00
|
|
|
|
2014-02-19 00:43:40 +03:00
|
|
|
_inherited from_: [src/js/component.js#L173](https://github.com/videojs/video.js/blob/master/src/js/component.js#L173)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### player()
|
|
|
|
> Return the component's player
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Player`
|
|
|
|
|
2014-02-19 00:43:40 +03:00
|
|
|
_inherited from_: [src/js/component.js#L120](https://github.com/videojs/video.js/blob/master/src/js/component.js#L120)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### ready( fn )
|
|
|
|
> Bind a listener to the component's ready state
|
|
|
|
>
|
|
|
|
> Different from event listeners in that if the ready event has already happend
|
|
|
|
> it will trigger the function immediately.
|
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __fn__ `Function` Ready listener
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component`
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L616](https://github.com/videojs/video.js/blob/master/src/js/component.js#L616)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### removeChild( component )
|
|
|
|
> Remove a child component from this component's list of children, and the
|
|
|
|
> child component's element from this component's element
|
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __component__ `vjs.Component` Component to remove
|
|
|
|
|
2014-02-19 00:43:40 +03:00
|
|
|
_inherited from_: [src/js/component.js#L405](https://github.com/videojs/video.js/blob/master/src/js/component.js#L405)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### removeClass( classToRemove )
|
|
|
|
> Remove a CSS class name from the component's element
|
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __classToRemove__ `String` Classname to remove
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component`
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L674](https://github.com/videojs/video.js/blob/master/src/js/component.js#L674)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### show()
|
|
|
|
> Show the component element if hidden
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component`
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L684](https://github.com/videojs/video.js/blob/master/src/js/component.js#L684)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### trigger( type, event )
|
|
|
|
> Trigger an event on an element
|
|
|
|
>
|
|
|
|
> myComponent.trigger('eventName');
|
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __type__ `String` The event type to trigger, e.g. 'click'
|
|
|
|
* __event__ `Event|Object` The event object to be passed to the listener
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component` self
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L571](https://github.com/videojs/video.js/blob/master/src/js/component.js#L571)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### triggerReady()
|
|
|
|
> Trigger the ready listeners
|
|
|
|
|
|
|
|
##### RETURNS:
|
|
|
|
* `vjs.Component`
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L635](https://github.com/videojs/video.js/blob/master/src/js/component.js#L635)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### width( [num], skipListeners )
|
|
|
|
> Set or get the width of the component (CSS values)
|
|
|
|
>
|
2013-11-06 04:12:20 +03:00
|
|
|
> Setting the video tag dimension values only works with values in pixels.
|
|
|
|
> Percent values will not work.
|
|
|
|
> Some percents can be used, but width()/height() will return the number + %,
|
|
|
|
> not the actual computed width/height.
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
##### PARAMETERS:
|
|
|
|
* __num__ `Number|String` _(OPTIONAL)_ Optional width number
|
|
|
|
* __skipListeners__ `Boolean` Skip the 'resize' event trigger
|
|
|
|
|
|
|
|
##### RETURNS:
|
2013-11-06 04:12:20 +03:00
|
|
|
* `vjs.Component` This component, when setting the width
|
|
|
|
* `Number|String` The width, when getting
|
2013-11-05 03:03:51 +03:00
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L747](https://github.com/videojs/video.js/blob/master/src/js/component.js#L747)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
## EVENTS
|
|
|
|
|
|
|
|
### resize `EVENT`
|
|
|
|
> Fired when the width and/or height of the component changes
|
|
|
|
|
2014-05-20 20:42:01 +03:00
|
|
|
_inherited from_: [src/js/component.js#L854](https://github.com/videojs/video.js/blob/master/src/js/component.js#L854)
|
2013-11-05 03:03:51 +03:00
|
|
|
|
|
|
|
---
|
|
|
|
|