Skip to content

Commit 5e4fcb4

Browse files
committed
Built "0.5.4-gw" as an interim build until the next official build to include changes since 0.5.3
1 parent 77fab60 commit 5e4fcb4

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
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": "0.5.3",
3+
"version": "0.5.4-gw",
44
"main": "dist/container.min.js",
55
"dependencies":
66
{

dist/container.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! SpringRoll Container 0.5.3 */
1+
/*! SpringRoll Container 0.5.4-gw */
22
/**
33
* @module Core
44
* @namespace window
@@ -1386,9 +1386,9 @@
13861386
* @property {String} version
13871387
* @static
13881388
* @readOnly
1389-
* @default "0.5.3"
1389+
* @default "0.5.4-gw"
13901390
*/
1391-
Container.version = "0.5.3";
1391+
Container.version = "0.5.4-gw";
13921392

13931393
//Reference to the prototype
13941394
var s = EventDispatcher.prototype;
@@ -2118,6 +2118,7 @@
21182118
* @param {Boolean} data.sfx If SFX context is supported
21192119
* @param {Boolean} data.captions If captions is supported
21202120
* @param {Boolean} data.hints If hinting is supported
2121+
* @param {Boolean} data.disablePause If pause is disabled for debugging
21212122
*/
21222123
this.trigger('features', event.data);
21232124
};
@@ -2698,15 +2699,15 @@
26982699
this._internalOpen(release.url + options.query, options);
26992700
}
27002701
.bind(this))
2701-
.fail(function()
2702+
.fail(function(err)
27022703
{
27032704
if (this._destroyed) return;
27042705

27052706
/**
27062707
* Fired when the API cannot be called
27072708
* @event remoteFailed
27082709
*/
2709-
return this.trigger('remoteFailed');
2710+
return this.trigger('remoteFailed', err);
27102711
}
27112712
.bind(this));
27122713
};

0 commit comments

Comments
 (0)