@eventmojis/videojs-plugin

0.0.6 • Public • Published

videojs-plugin

Plugin description goes here

Installation

npm install --save @eventmojis/videojs-plugin

Usage

To include videojs-plugin on your website or web application, use any of the following methods.

<script> Tag

This is the simplest case. Get the script in whatever way you prefer and include the plugin after you include video.js, so that the videojs global is available.

<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-plugin.min.js"></script>
<script>
  var player = videojs('my-video');

  player.eventmojis();
</script>

Browserify/CommonJS

When using with Browserify, install videojs-plugin via npm and require the plugin as you would any other module.

var videojs = require('video.js');

// The actual plugin function is exported by this module, but it is also
// attached to the `Player.prototype`; so, there is no need to assign it
// to a variable.
require('@eventmojis/videojs-plugin');

var player = videojs('my-video');

player.eventmojis();

RequireJS/AMD

When using with RequireJS (or another AMD library), get the script in whatever way you prefer and require the plugin as you normally would:

require(['video.js', '@eventmojis/videojs-plugin'], function(videojs) {
  var player = videojs('my-video');

  player.eventmojis();
});

License

MIT. Copyright (c) Eventmojis <hi@eventmojis.com>

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.6
    3
    • latest

Version History

Package Sidebar

Install

npm i @eventmojis/videojs-plugin

Weekly Downloads

3

Version

0.0.6

License

MIT

Unpacked Size

119 kB

Total Files

17

Last publish

Collaborators

  • eventmojis-mourlam
  • eventmojis-braun