1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Update sort/batch docs

This commit is contained in:
Nick O'Leary 2018-02-01 20:21:36 +00:00
parent 1377439bb0
commit 6f69995f4e
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
2 changed files with 6 additions and 10 deletions

View File

@ -14,8 +14,6 @@
limitations under the License. limitations under the License.
--> -->
<!DOCTYPE html>
<script type="text/x-red" data-template-name="sort"> <script type="text/x-red" data-template-name="sort">
<div class="form-row"> <div class="form-row">

View File

@ -14,8 +14,6 @@
limitations under the License. limitations under the License.
--> -->
<!DOCTYPE html>
<script type="text/x-red" data-template-name="batch"> <script type="text/x-red" data-template-name="batch">
<div class="form-row"> <div class="form-row">
<label for="node-input-mode"><span data-i18n="batch.mode.label"></span></label> <label for="node-input-mode"><span data-i18n="batch.mode.label"></span></label>
@ -83,10 +81,10 @@
arrive within the interval, the node can optionally send on an empty message.</dd> arrive within the interval, the node can optionally send on an empty message.</dd>
<dt>Concatenate Sequences</dt> <dt>Concatenate Sequences</dt>
<dd>creates a message sequence by concatenating incoming sequences. Each sequence <dd>creates a message sequence by concatenating incoming sequences. Each message
must have a <code>msg.topic</code> property to identify it. The node is must have a <code>msg.topic</code> property and a <code>msg.parts</code> property
configured with a list of <code>topic</code> values to identify the order identifying its sequence. The node is configured with a list of <code>topic</code>
sequences are concatenated. values to identify the order sequences are concatenated.
</dd> </dd>
</dd> </dd>
</dl> </dl>