Skip to content

Commit 49b703e

Browse files
author
Dave Conway-Jones
committed
2 parents b82fd90 + a405be4 commit 49b703e

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

docs/api/ui/editableList/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ Adds items contained in an array to the end of the list. `itemData` is an array
321321
with the item in the list.
322322

323323
```javascript
324-
$("ol.list").editableList('addItem',[{fruit:"banana"},{fruit:"apple"},{fruit:"pear"}]);
324+
$("ol.list").editableList('addItems',[{fruit:"banana"},{fruit:"apple"},{fruit:"pear"}]);
325325
```
326326

327327
#### <a href="#methods-removeItem" name="methods-removeItem">removeItem( itemData )</a>

docs/faq/starting-node-red-on-boot.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,3 +134,4 @@ by members of the community.
134134
- [A Launchd script](https://gist.github.com/natcl/4688162920f368707613) by natcl (OS X)
135135
- [Running as a Windows service using NSSM](https://gist.github.com/dceejay/576b4847f0a17dc066db) by dceejay
136136
- [Running as Windows/OS X service](http://www.hardill.me.uk/wordpress/2014/05/30/running-node-red-as-a-windows-or-osx-service/) by Ben Hardill
137+
- [An rc.d script](https://gist.github.com/apearson/56a2cd137099dbeaf6683ef99aa43ce0) by apearson (freebsd)

docs/getting-started/local.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Option | Description |
135135
Node-RED uses `flows_<hostname>.json` as the default flows file. If the computer
136136
you are running on may change its hostname, then you should ensure you provide a
137137
static file name; either as a command-line argument or using the `flowsFile` option
138-
in your [settings file](settings-file).
138+
in your [settings file](/docs/user-guide/runtime/settings-file).
139139

140140
### Passing arguments to the underlying Node.js process
141141

docs/user-guide/concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ slug: concepts
113113
editor. These include panels to view more information and help about a node,
114114
to view debug message and to view the flow's configuration nodes.
115115

116-
- [Working with the Sidebar](docs/user-guide/editor/sidebar/)
116+
- [Working with the Sidebar](/docs/user-guide/editor/sidebar/)
117117

118118

119119
<script>

docs/user-guide/editor/workspace/nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,4 +123,4 @@ It also provides a select box to set the scope of the config node. The scope
123123
determines which flows the config node is available on. By default it is available
124124
on all flows, but the select box can be used to make it local to just one flow.
125125

126-
The [Configuration Nodes Sidebar](sidebar/config) can be used to manage all config nodes.
126+
The [Configuration Nodes Sidebar](/docs/user-guide/editor/sidebar/config) can be used to manage all config nodes.

docs/user-guide/node-red-admin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ it to access. By default, it assumes `http://localhost:1880`. To change that, us
3131

3232
node-red-admin target http://node-red.example.com/admin
3333

34-
If [authentication](security) is enabled, you must then `login`:
34+
If [authentication](/docs/user-guide/runtime/securing-node-red) is enabled, you must then `login`:
3535

3636
node-red-admin login
3737

0 commit comments

Comments
 (0)