File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 {
Original file line number Diff line number Diff line change 1- /*! SpringRoll Container 0.5.3 */
1+ /*! SpringRoll Container 0.5.4-gw */
22/**
33 * @module Core
44 * @namespace window
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 ;
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 } ;
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 } ;
You can’t perform that action at this time.
0 commit comments