Skip to content

Commit ca16a0b

Browse files
committed
minor
1 parent 5076541 commit ca16a0b

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

services/static-webserver/client/source/class/osparc/data/model/IframeHandler.js

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,7 @@ qx.Class.define("osparc.data.model.IframeHandler", {
236236
srvUrl &&
237237
srvUrl !== node.getServiceUrl() // if it's already connected, do not restart the connection process
238238
) {
239-
// OM check this
240-
// status.setInteractive("connecting");
241-
this.__setCustomInteractive("connecting");
239+
this.__statusInteractiveChanged("connecting", node.getStatus().getInteractive());
242240
this.__retriesLeft = 40;
243241
this.__waitForServiceReady(srvUrl);
244242
}
@@ -312,13 +310,6 @@ qx.Class.define("osparc.data.model.IframeHandler", {
312310
node.getStatus().setInteractive("ready");
313311
},
314312

315-
__setCustomInteractive: function(customStatus) {
316-
const node = this.getNode();
317-
if (node) {
318-
this.__statusInteractiveChanged(customStatus, node.getStatus().getInteractive());
319-
}
320-
},
321-
322313
__statusInteractiveChanged: function(status, oldStatus) {
323314
if (status === oldStatus) {
324315
return;

0 commit comments

Comments
 (0)