1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-16 11:37:29 +02:00
video.js/docs/api/vjs.md
2013-11-04 16:03:51 -08:00

3.2 KiB

vjs

DEFINED IN: src/js/core.js#L26

Doubles as the main function for users to create a player instance and also the main library object.

ALIASES videojs, V (deprecated)

The vjs function can be used to initialize or retrieve a player.

var myPlayer = vjs('my_video_id');

INDEX


PROPERTIES

options

Global Player instance options, surfaced from vjs.Player.prototype.options_ vjs.options = vjs.Player.prototype.options_ All options should use string keys so they avoid renaming by closure compiler

defined in: src/js/core.js#L77


players

Global player list

defined in: src/js/core.js#L118


METHODS

plugin( name, init )

the method for registering a video.js plugin

PARAMETERS:
  • name String The name of the plugin
  • init Function The function that is run when the player inits

defined in: src/js/plugins.js#L7