New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

videojs-record

Package Overview
Dependencies
Maintainers
1
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

videojs-record - npm Package Compare versions

Comparing version 0.3.0 to 0.4.0

.project

2

bower.json
{
"name": "videojs-record",
"version": "0.3.0",
"version": "0.4.0",
"homepage": "https://github.com/collab-project/videojs-record",

@@ -5,0 +5,0 @@ "description": "A video.js plugin for recording audio/video files.",

{
"name": "videojs-record",
"version": "0.3.0",
"version": "0.4.0",
"description": "A video.js plugin for recording audio/video files.",

@@ -5,0 +5,0 @@ "main": "src/js/videojs.record.js",

@@ -49,4 +49,3 @@ (function(window, videojs) {

case this.AUDIO_ONLY:
// XXX: enable videojs-wavesurfer plugin automatically?
// reference to videojs-wavesurfer plugin
this.surfer = player.waveform;

@@ -76,4 +75,5 @@

// videojs automatically hides the controls when no valid 'source'
// element is included in the 'audio' tag. Don't.
// element is included in the 'audio' tag. Don't. Ever again.
this.player().controlBar.show();
this.player().controlBar.el().style.display = 'block';

@@ -179,6 +179,13 @@ // disable currentTimeDisplay's 'timeupdate' event listener that

this.player().controlBar.liveDisplay.hide();
this.player().controlBar.currentTimeDisplay.show();
this.player().controlBar.timeDivider.show();
this.player().controlBar.durationDisplay.show();
// show elements that should never be hidden
var uiElements = [this.player().controlBar.currentTimeDisplay,
this.player().controlBar.timeDivider,
this.player().controlBar.durationDisplay];
for (var element in uiElements)
{
uiElements[element].el().style.display = 'block';
uiElements[element].show();
}
// setup preview

@@ -749,2 +756,3 @@ switch (this.getRecordType())

});
player.recordIndicator.hide();
player.recorder.el().appendChild(player.recordIndicator.el());

@@ -751,0 +759,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc