Skip to content

Commit d088641

Browse files
authored
Merge pull request #180 from SpringRoll/release/2.5.1
Release 2.5.1
2 parents 67b411c + c344ef3 commit d088641

8 files changed

+164
-111
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [2.5.0] - 2023-02-21
8+
## [2.5.1] - 2024-04-16
9+
10+
### Fixed
11+
12+
- Fixed order of parameters in `_setMuteProp()` call in `CaptionsTogglePlugin` so Container correctly sets initial state of toggle button
13+
14+
## [2.5.0] - 2024-02-21
915

1016
### Changed
1117

dist/SpringRoll-Container-umd.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/SpringRoll-Container-umd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+151-104
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "springroll-container",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "The iframe controller for interacting with SpringRoll applications",
55
"main": "./dist/index.js",
66
"license": "MIT",

src/plugins/CaptionsTogglePlugin.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export class CaptionsTogglePlugin extends ButtonPlugin {
6767

6868
const captionsMuted = !!SavedData.read(CaptionsTogglePlugin.captionsToggleKey);
6969

70-
this._setMuteProp('captionsMuted', captionsMuted, this._captionsButtons, true);
70+
this._setMuteProp('captionsMuted', this._captionsButtons, captionsMuted, true);
7171

7272
}.bind(this)
7373
);

0 commit comments

Comments
 (0)