Socket
Socket
Sign inDemoInstall

react-howler

Package Overview
Dependencies
6
Maintainers
3
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.7.2 to 3.7.3

13

CHANGELOG.md

@@ -1,14 +0,19 @@

# 3.7.2 - 2017-04-07
# 3.7.3 - 2018-06-30
- Fixed: Don't mute if the `mute` prop has not changed (#65)
- Updated: Use Howler.js version `2.0.13`
# 3.7.2 - 2018-04-07
- Updated: Use Howler.js version `2.0.9`
# 3.7.1 - 2017-01-23
# 3.7.1 - 2018-01-23
- Updated: Use Howler.js version `2.0.8` to fix Chrome deprecation warning (#55)
# 3.7.0 - 2017-01-03
# 3.7.0 - 2018-01-03
- Added: Load sound when `props.preload` changes to true (#58)
# 3.6.7 - 2017-01-02
# 3.6.7 - 2018-01-02

@@ -15,0 +20,0 @@ - Fixed: Don't seek if no props.seek specified (#57)

@@ -115,5 +115,8 @@ 'use strict';

props.playing ? this.play() : this.pause();
this.mute(props.mute);
this.loop(props.loop);
if (props.mute !== this.props.mute) {
this.mute(props.mute);
}
if (props.volume !== this.props.volume) {

@@ -120,0 +123,0 @@ this.volume(props.volume);

{
"name": "react-howler",
"version": "3.7.2",
"version": "3.7.3",
"description": "A React.js wrapper for howler.js (audio player)",

@@ -46,3 +46,3 @@ "main": "lib/index.js",

"dependencies": {
"howler": "2.0.9",
"howler": "2.0.13",
"prop-types": "^15.5.6"

@@ -61,3 +61,8 @@ },

"standard": "^10.0.3"
},
"greenkeeper": {
"ignore": [
"standard"
]
}
}
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