Skip to content

Commit 931b606

Browse files
authored
Merge pull request #100 from SpringRoll/release/2.2.3
Release/2.2.3
2 parents dbdcf73 + ba624d9 commit 931b606

File tree

8 files changed

+12
-8
lines changed

8 files changed

+12
-8
lines changed

CHANGELOG.md

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

7+
## [2.2.3] - 2021-05-21
8+
## Changed
9+
- updated `singlePlay` response to not return an object containing the boolean, but just the boolean itself.
10+
711
## [2.2.2] - 2021-05-05
8-
## Changes
12+
## Changed
913
- Updated comments and docs to be more accurate and up to date
1014
## [2.2.1] - 2021-03-04
1115
### Changed

dist/SpringRoll-Container-umd.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/SpringRoll-Container-umd.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

e2e/client.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

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

src/Container.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export class Container extends PluginManager {
164164
this.iframe.classList.add('loading');
165165
this.iframe.setAttribute('src', path);
166166

167-
this.client.respond('singlePlay', { singlePlay });
167+
this.client.respond('singlePlay', singlePlay);
168168
this.client.respond('playOptions', playOptions);
169169
this.client.trigger('open');
170170
}

0 commit comments

Comments
 (0)