From e7dcdb075acfe1afe74923bf293dec9838c3001d Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Mon, 31 Mar 2014 13:06:29 +0100 Subject: [PATCH] Update udp node bind local options --- nodes/core/io/32-udp.html | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/nodes/core/io/32-udp.html b/nodes/core/io/32-udp.html index 785545827..8998b50c7 100644 --- a/nodes/core/io/32-udp.html +++ b/nodes/core/io/32-udp.html @@ -116,7 +116,7 @@
@@ -199,6 +199,15 @@ $("#node-input-outport-type").change(); + $("#node-input-multicast").change(function() { + var type = $(this).children("option:selected").val(); + if (type == "false") { + $("#node-input-outport-type-random").html("bind to random local port"); + } else { + $("#node-input-outport-type-random").html("bind to target port"); + } + }); + $("#node-input-multicast").change(); } });