File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
services/static-webserver/client/source/class/osparc/wrapper Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ qx.Class.define("osparc.wrapper.RocketPreview", {
8989 /**
9090 * True once the iframe signals it's ready (osparc:ready).
9191 */
92- ready : {
92+ rocketReady : {
9393 check : "Boolean" ,
9494 init : false ,
9595 event : "changeReady"
@@ -142,7 +142,7 @@ qx.Class.define("osparc.wrapper.RocketPreview", {
142142 // --------------------
143143
144144 __send : function ( msg ) {
145- if ( ! this . isReady ( ) ) {
145+ if ( ! this . isRocketReady ( ) ) {
146146 this . __messageQueue . push ( msg ) ;
147147 return ;
148148 }
@@ -152,7 +152,7 @@ qx.Class.define("osparc.wrapper.RocketPreview", {
152152 __onMessage : function ( ev ) {
153153 const data = ev . data ;
154154 if ( data && data . type === "osparc:ready" ) {
155- this . setReady ( true ) ;
155+ this . setRocketReady ( true ) ;
156156 while ( this . __messageQueue . length ) {
157157 this . __postMessage ( this . __messageQueue . shift ( ) ) ;
158158 }
You can’t perform that action at this time.
0 commit comments