0.0.6 • Published 3 years ago

@eventmojis/videojs-plugin v0.0.6

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

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>

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago