Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@silvermine/videojs-chromecast

Package Overview
Dependencies
Maintainers
3
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@silvermine/videojs-chromecast - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

2

package.json
{
"name": "@silvermine/videojs-chromecast",
"version": "1.3.1",
"version": "1.3.2",
"description": "video.js plugin for casting to chromecast",

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

@@ -43,2 +43,5 @@ 'use strict';

this._sessionListener = this._onSessionStateChange.bind(this);
this._castListener = this._onCastStateChange.bind(this);
this._addCastContextEventListeners();

@@ -65,4 +68,4 @@

this.getCastContext().addEventListener(sessionStateChangedEvt, this._onSessionStateChange.bind(this));
this.getCastContext().addEventListener(castStateChangedEvt, this._onCastStateChange.bind(this));
this.getCastContext().addEventListener(sessionStateChangedEvt, this._sessionListener);
this.getCastContext().addEventListener(castStateChangedEvt, this._castListener);
},

@@ -80,4 +83,4 @@

this.getCastContext().removeEventListener(sessionStateChangedEvt);
this.getCastContext().removeEventListener(castStateChangedEvt);
this.getCastContext().removeEventListener(sessionStateChangedEvt, this._sessionListener);
this.getCastContext().removeEventListener(castStateChangedEvt, this._castListener);
},

@@ -84,0 +87,0 @@

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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