diff --git a/packages/node_modules/@node-red/editor-client/src/tours/welcome.js b/packages/node_modules/@node-red/editor-client/src/tours/welcome.js index b3186a49b..cb1266b89 100644 --- a/packages/node_modules/@node-red/editor-client/src/tours/welcome.js +++ b/packages/node_modules/@node-red/editor-client/src/tours/welcome.js @@ -93,6 +93,8 @@ export default { { title: {"en-US":"Link Call node added"}, prepare(done) { + this.paletteWasClosed = $("#red-ui-main-container").hasClass("red-ui-palette-closed"); + RED.actions.invoke("core:toggle-palette",true) $('[data-palette-type="link call"]')[0].scrollIntoView({block:"center"}) setTimeout(done,100); }, @@ -100,13 +102,27 @@ export default { direction: "right", description: { "en-US": '
The Link Call
node lets you call another flow that begins with a Link In
node and get the result back when the message reaches a Link Out
node.
The MQTT
nodes now support creating their connections and subscriptions dynamically.
The file nodes have been renamed to make it clearer which node does what.
' },