Skip to content

Commit 82b8f3d

Browse files
committed
Bumping versions and rebuilding
1 parent 4f6b702 commit 82b8f3d

File tree

6 files changed

+28
-18
lines changed

6 files changed

+28
-18
lines changed

bower.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": "1.1.0",
3+
"version": "1.1.1",
44
"main": "dist/container.min.js",
55
"dependencies":
66
{

dist/container.js

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! SpringRoll Container 1.1.0 */
1+
/*! SpringRoll Container 1.1.1 */
22
/**
33
* @module Core
44
* @namespace window
@@ -1389,9 +1389,9 @@
13891389
* @property {String} version
13901390
* @static
13911391
* @readOnly
1392-
* @default "1.1.0"
1392+
* @default "1.1.1"
13931393
*/
1394-
Container.version = "1.1.0";
1394+
Container.version = "1.1.1";
13951395

13961396
//Reference to the prototype
13971397
var s = EventDispatcher.prototype;
@@ -2611,7 +2611,8 @@
26112611

26122612
this.onPauseToggle = onPauseToggle.bind(this);
26132613

2614-
for(var i = 0; i < this.pauseButton.length; i++){
2614+
for (var i = 0; i < this.pauseButton.length; i++)
2615+
{
26152616
this.pauseButton[i].addEventListener('click', this.onPauseToggle);
26162617
}
26172618

@@ -2673,7 +2674,8 @@
26732674
this.trigger('pause', paused);
26742675

26752676
// Set the pause button state
2676-
for(var i = 0; i < this.pauseButton.length; i++){
2677+
for (var i = 0; i < this.pauseButton.length; i++)
2678+
{
26772679
var element = this.pauseButton[i];
26782680
element.classList.remove('unpaused');
26792681
element.classList.remove('paused');
@@ -2709,7 +2711,8 @@
27092711

27102712
plugin.opened = function()
27112713
{
2712-
for(var i = 0; i < this.pauseButton.length; i++){
2714+
for (var i = 0; i < this.pauseButton.length; i++)
2715+
{
27132716
this.pauseButton[i].classList.remove('disabled');
27142717
}
27152718

@@ -2719,15 +2722,17 @@
27192722

27202723
plugin.close = function()
27212724
{
2722-
for(var i = 0; i < this.pauseButton.length; i++){
2725+
for (var i = 0; i < this.pauseButton.length; i++)
2726+
{
27232727
this._disableButton.bind(this.pauseButton[i]);
27242728
}
27252729
this.paused = false;
27262730
};
27272731

27282732
plugin.teardown = function()
27292733
{
2730-
for(var i = 0; i < this.pauseButton.length; i++){
2734+
for (var i = 0; i < this.pauseButton.length; i++)
2735+
{
27312736
this.pauseButton[i].removeEventListener('click', this.onPauseToggle);
27322737
}
27332738
delete this.pauseButton;

dist/container.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.

library.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": "1.1.0",
3+
"version": "1.1.1",
44
"description": "The iframe controller for interacting with SpringRoll applications",
55
"url": "https://github.com/SpringRoll/SpringRollContainer",
66
"output": "container",

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": "1.1.0",
3+
"version": "1.1.1",
44
"description": "The iframe controller for interacting with SpringRoll applications",
55
"main": "./dist/container.min.js",
66
"author":

src/container/plugins/PausePlugin.js

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919

2020
this.onPauseToggle = onPauseToggle.bind(this);
2121

22-
for(var i = 0; i < this.pauseButton.length; i++){
22+
for (var i = 0; i < this.pauseButton.length; i++)
23+
{
2324
this.pauseButton[i].addEventListener('click', this.onPauseToggle);
2425
}
2526

@@ -81,7 +82,8 @@
8182
this.trigger('pause', paused);
8283

8384
// Set the pause button state
84-
for(var i = 0; i < this.pauseButton.length; i++){
85+
for (var i = 0; i < this.pauseButton.length; i++)
86+
{
8587
var element = this.pauseButton[i];
8688
element.classList.remove('unpaused');
8789
element.classList.remove('paused');
@@ -117,7 +119,8 @@
117119

118120
plugin.opened = function()
119121
{
120-
for(var i = 0; i < this.pauseButton.length; i++){
122+
for (var i = 0; i < this.pauseButton.length; i++)
123+
{
121124
this.pauseButton[i].classList.remove('disabled');
122125
}
123126

@@ -127,15 +130,17 @@
127130

128131
plugin.close = function()
129132
{
130-
for(var i = 0; i < this.pauseButton.length; i++){
133+
for (var i = 0; i < this.pauseButton.length; i++)
134+
{
131135
this._disableButton.bind(this.pauseButton[i]);
132136
}
133137
this.paused = false;
134138
};
135139

136140
plugin.teardown = function()
137141
{
138-
for(var i = 0; i < this.pauseButton.length; i++){
142+
for (var i = 0; i < this.pauseButton.length; i++)
143+
{
139144
this.pauseButton[i].removeEventListener('click', this.onPauseToggle);
140145
}
141146
delete this.pauseButton;

0 commit comments

Comments
 (0)