mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Merge pull request #3378 from node-red/tour-update
Update tour for 2.2.0
This commit is contained in:
commit
033d26f2cb
@ -78,6 +78,12 @@
|
|||||||
}
|
}
|
||||||
.red-ui-tourGuide-popover-description {
|
.red-ui-tourGuide-popover-description {
|
||||||
padding: 10px 20px 5px;
|
padding: 10px 20px 5px;
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-height: 150px;
|
||||||
|
border: 1px solid var(--red-ui-tourGuide-border);
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.red-ui-tourGuide-popover-full {
|
.red-ui-tourGuide-popover-full {
|
||||||
.red-ui-tourGuide-popover-description {
|
.red-ui-tourGuide-popover-description {
|
||||||
|
BIN
packages/node_modules/@node-red/editor-client/src/tours/images/subflow-labels.png
vendored
Normal file
BIN
packages/node_modules/@node-red/editor-client/src/tours/images/subflow-labels.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
@ -30,6 +30,25 @@ export default {
|
|||||||
RED.search.hide();
|
RED.search.hide();
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: {
|
||||||
|
"en-US": "Remembering Zoom & Position",
|
||||||
|
// "ja": ""
|
||||||
|
},
|
||||||
|
description: {
|
||||||
|
"en-US": "<p>The editor has new options to restore the zoom level and scroll position when reloading the editor.</p>",
|
||||||
|
// "ja": ""
|
||||||
|
},
|
||||||
|
element: function() { return $("#user-settings-view-store-position").parent()},
|
||||||
|
prepare(done) {
|
||||||
|
RED.actions.invoke("core:show-user-settings")
|
||||||
|
setTimeout(done,400);
|
||||||
|
},
|
||||||
|
complete(done) {
|
||||||
|
$("#node-dialog-ok").trigger("click");
|
||||||
|
setTimeout(done,400);
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: {
|
title: {
|
||||||
"en-US": "New wiring actions",
|
"en-US": "New wiring actions",
|
||||||
@ -103,6 +122,17 @@ export default {
|
|||||||
<p>Ctrl (またはCmd)キーを押しながら、マウスの右ボタンを用いてドラッグすると、ワイヤーを切って削除できます。</p>`
|
<p>Ctrl (またはCmd)キーを押しながら、マウスの右ボタンを用いてドラッグすると、ワイヤーを切って削除できます。</p>`
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: {
|
||||||
|
"en-US": "Subflow Output Labels",
|
||||||
|
// "ja": ""
|
||||||
|
},
|
||||||
|
image: "images/subflow-labels.png",
|
||||||
|
description: {
|
||||||
|
"en-US": "<p>If a subflow has labels set for its outputs, they now get shown on the ports within the subflow template view.</p>",
|
||||||
|
// "ja": ""
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: {
|
title: {
|
||||||
"en-US": "Node Updates",
|
"en-US": "Node Updates",
|
||||||
|
Loading…
Reference in New Issue
Block a user