videojs-wavesurfer
Advanced tools
Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "videojs-wavesurfer", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"homepage": "https://github.com/collab-project/videojs-wavesurfer", | ||
@@ -5,0 +5,0 @@ "description": "video.js plugin that adds a navigable waveform for audio and video files.", |
{ | ||
"name": "videojs-wavesurfer", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "video.js plugin that adds a navigable waveform for audio and video files.", | ||
@@ -5,0 +5,0 @@ "main": "videojs.wavesurfer.js", |
@@ -6,3 +6,3 @@ (function (root, factory) | ||
// AMD. Register as an anonymous module. | ||
define(['videojs'], factory); | ||
define(['videojs', 'wavesurfer'], factory); | ||
} | ||
@@ -14,3 +14,3 @@ else if (typeof module === 'object' && module.exports) | ||
// like Node. | ||
module.exports = factory(require('videojs')); | ||
module.exports = factory(require('videojs'), require('wavesurfer')); | ||
} | ||
@@ -20,5 +20,5 @@ else | ||
// Browser globals (root is window) | ||
root.returnExports = factory(root.videojs); | ||
root.returnExports = factory(root.videojs, root.WaveSurfer); | ||
} | ||
}(this, function (videojs) | ||
}(this, function (videojs, WaveSurfer) | ||
{ | ||
@@ -25,0 +25,0 @@ var VjsComponent = videojs.getComponent('Component'); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
541561