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

@akryum/mediaelement

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@akryum/mediaelement - npm Package Compare versions

Comparing version 4.3.4 to 4.3.5

2

package.json
{
"name": "@akryum/mediaelement",
"license": "MIT",
"version": "4.3.4",
"version": "4.3.5",
"main": "full.js",

@@ -6,0 +6,0 @@ "repository": {

@@ -53,5 +53,5 @@ 'use strict';

if (t.paused) {
t.play();
t.play(true);
} else {
t.pause();
t.pause(true);
}

@@ -58,0 +58,0 @@ });

@@ -99,3 +99,3 @@ 'use strict';

if (!player.paused) {
player.pause();
player.pause(true);
}

@@ -110,3 +110,3 @@

setTimeout(function() {
player.play();
player.play(true);
}, 0);

@@ -139,3 +139,3 @@ }

if (!player.paused) {
player.pause();
player.pause(true);
}

@@ -150,3 +150,3 @@

setTimeout(function() {
player.play();
player.play(true);
}, 0);

@@ -350,3 +350,3 @@ }

t.slider.focus();
t.play();
t.play(true);
}

@@ -424,5 +424,5 @@ t.forcedHandlePause = false;

if (t.paused) {
t.play();
t.play(true);
} else {
t.pause();
t.pause(true);
}

@@ -438,3 +438,3 @@ }

if (!startedPaused) {
player.pause();
player.pause(true);
}

@@ -470,3 +470,3 @@

if (!t.paused) {
t.pause();
t.pause(true);
t.forcedHandlePause = true;

@@ -473,0 +473,0 @@ }

@@ -734,3 +734,3 @@ 'use strict';

if (t.media.paused) {
t.media.play();
t.media.play(true);
}

@@ -737,0 +737,0 @@ });

@@ -133,8 +133,7 @@ 'use strict';

action: (player) => {
if (!IS_FIREFOX) {
if (player.paused || player.ended) {
player.play();
player.play(true);
} else {
player.pause();
player.pause(true);
}

@@ -660,7 +659,7 @@ }

if (t.paused && pressed) {
t.pause();
t.pause(true);
} else if (t.paused) {
t.play();
t.play(true);
} else {
t.pause();
t.pause(true);
}

@@ -1363,5 +1362,5 @@

if (t.paused) {
t.play();
t.play(true);
} else {
t.pause();
t.pause(true);
}

@@ -1602,5 +1601,5 @@

if (t.paused) {
t.play();
t.play(true);
} else {
t.pause();
t.pause(true);
}

@@ -1809,7 +1808,9 @@

play () {
play (userInteraction = false) {
this.playUserInteraction = userInteraction;
return this.proxy.play();
}
pause () {
pause (userInteraction = false) {
this.pauseUserInteraction = userInteraction;
return this.proxy.pause();

@@ -1816,0 +1817,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