Skip to content

Commit 0b27ccd

Browse files
committed
Hotfix for a missing parameter that somehow missed the 1.1.6 commit in global muting
1 parent e47f9cd commit 0b27ccd

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.1.7 (May 30, 2013)
2+
- `FIXED`: Hotfix for a missing parameter that somehow missed the 1.1.6 commit in global muting.
3+
14
## 1.1.6 (May 30, 2013)
25
- `ADDED`: A general `fade` method that allows a playing sound to be faded from one volume to another.
36
- `DEPRECATED`: The `fadeIn` and `fadeOut` methods should no longer be used and have been deprecated. These will be removed in a future major release.

howler.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* howler.js v1.1.6
2+
* howler.js v1.1.7
33
* howlerjs.com
44
*
55
* (c) 2013, James Simpson of GoldFire Studios
@@ -99,8 +99,9 @@
9999

100100
/**
101101
* Handle muting and unmuting globally.
102+
* @param {Boolean} muted Is muted or not.
102103
*/
103-
_setMuted: function() {
104+
_setMuted: function(muted) {
104105
var self = this;
105106

106107
self._muted = muted;

howler.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)