Socket
Socket
Sign inDemoInstall

video-react

Package Overview
Dependencies
13
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.14.0 to 0.14.1

10

CHANGELOG.md

@@ -0,1 +1,11 @@

<a name="0.14.1"></a>
## [0.14.1](https://github.com/video-react/video-react/compare/0.14.0...0.14.1) (2019-07-24)
### Bug Fixes
* bad seek time on iOS safari ([19efac4](https://github.com/video-react/video-react/commit/19efac4))
<a name="0.14.0"></a>

@@ -2,0 +12,0 @@ # [0.14.0](https://github.com/video-react/video-react/compare/0.13.9...0.14.0) (2019-06-21)

1

lib/components/Player.js

@@ -472,2 +472,3 @@ "use strict";

onMouseDown: this.handleMouseDown,
onTouchMove: this.handleMouseMove,
onMouseMove: this.handleMouseMove,

@@ -474,0 +475,0 @@ onKeyDown: this.handleKeyDown,

@@ -142,2 +142,6 @@ "use strict";

value: function handleMouseUp(event) {
// On iOS safari, a subsequent mouseup event will be fired after touchend.
// Its weird event positions make the player seek a wrong time.
// calling preventDefault (at touchend phase) will prevent the mouseup event
event.preventDefault();
var onMouseUp = this.props.onMouseUp;

@@ -144,0 +148,0 @@ document.removeEventListener('mousemove', this.handleMouseMove, true);

2

package.json
{
"name": "video-react",
"version": "0.14.0",
"version": "0.14.1",
"description": "Video-React is a web video player built from the ground up for an HTML5 world using React library.",

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

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

Sorry, the diff of this file is not supported yet

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

Sorry, the diff of this file is not supported yet

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

Sorry, the diff of this file is not supported yet

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

Sorry, the diff of this file is not supported yet

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

Sorry, the diff of this file is not supported yet

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

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc