Skip to content

Commit ac034b2

Browse files
committed
edit links not ui
1 parent 2bc1288 commit ac034b2

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

md/5_writing_ops/dev_creating_ports/dev_ports_array/dev_ports_array.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This page will explain how to create an input and output port of the type 'Array
55
![Button](../img/creating_ports_array_port_color.png) <br>
66

77

8-
Click this [link](https://cables.gl/ui/#/project/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
8+
Click this [link](https://cables.gl/edit/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
99

1010
A Javascript array can contain either simple values, arrays or objects<br>
1111
Arrays are used to store multiple values in a single variable.

md/5_writing_ops/dev_creating_ports/dev_ports_boolean/dev_ports_boolean.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This page will explain how to create an input and output port of the type 'Boolean'<br>
44
![Button](../img/creating_ports_boolean_port_color.png) <br>
5-
Click this [link](https://cables.gl/ui/#/project/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
5+
Click this [link](https://cables.gl/edit/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
66

77
A JavaScript Boolean represents one of two values: true or false
88

md/5_writing_ops/dev_creating_ports/dev_ports_integer/dev_ports_integer_.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This page will explain how to create an input and ouput port of the type `Integer`
44

5-
Click this [link](https://cables.gl/ui/#/project/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
5+
Click this [link](https://cables.gl/edit/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
66

77
Integer ports can hold a single integer like `-2 0 10 101`
88
They're useful when you want to have a parameter to access an array by index or don't want to have to use `Math.floor` on the numerical input.

md/5_writing_ops/dev_creating_ports/dev_ports_object/dev_ports_object.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This page will explain how to create an input and ouput port of the type `Object`<br>
44
![Button](../img/creating_ports_object_port_color.png) <br>
55

6-
Click this [link](https://cables.gl/ui/#/project/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
6+
Click this [link](https://cables.gl/edit/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
77

88
Object ports can accept any kind of object, e.g.:
99

md/5_writing_ops/dev_creating_ports/dev_ports_string/dev_ports_string.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This page will explain how to create an input and output port of the type 'Strin
44

55
![Button](../img/creating_ports_string_port_color.png)<br>
66

7-
Click this [link](https://cables.gl/ui/#/project/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
7+
Click this [link](https://cables.gl/edit/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
88

99
JavaScript strings are used for storing and manipulating text
1010
A string is zero or more characters written inside quotes

md/5_writing_ops/dev_creating_ports/dev_ports_trigger/dev_ports_trigger.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
This page will explain how to create an input and output port of the type`Trigger`and how to make a `Button` in the UI pane of the op which can be clicked with the mouse to trigger an event<br>
44
![Button](../img/creating_ports_trigger_port_color.png) <br>
55

6-
Click this [link](https://cables.gl/ui/#/project/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
6+
Click this [link](https://cables.gl/edit/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
77

88
Trigger ports are used to trigger another op. If you have a patch that creates visuals then you need to add the`MainLoop op`which has a `trigger port`. This updates all connected ports 60 times a second.
99
Trigger ports can also be triggered under certain conditions <br>

md/5_writing_ops/dev_creating_ports/dev_ports_value/dev_ports_value.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This page will explain how to create an input and ouput port of the type `Number`<br>
44
![Button](../img/creating_ports_value_port_color.png)<br>
5-
Click this [link](https://cables.gl/ui/#/project/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
5+
Click this [link](https://cables.gl/edit/5b9f692e671e52e512ab3af3) to see an example of all port types and code examples
66

77
JavaScript does not define different types of numbers, like integers, short, long, floating-point etc <br>
88
JavaScript numbers are always stored as double precision floating point numbers

0 commit comments

Comments
 (0)