video-react
Advanced tools
Comparing version 0.14.0 to 0.14.1
@@ -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) |
@@ -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); |
{ | ||
"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
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
2608247
24310