<script type="text/html" data-template-name="exif"> <div class="form-row"> <label for="node-input-mode"><i class="fa fa-dot-circle-o"></i><span data-i18n="exif.label.mode"></span></label> <select style="width:70%" id="node-input-mode"> <option value="normal">Standard node</option> <option value="worldmap">Use with Worldmap-in node</option> </select> </div> <div class="form-row" id="node-exif-prop-select"> <label for="node-input-property"><i class="fa fa-ellipsis-h"></i> <span data-i18n="node-red:common.label.property"></span></label> <input type="text" id="node-input-property" style="width:70%;"/> </div> <div class="form-row"> <label for="node-input-name"><i class="fa fa-tag"></i><span data-i18n="node-red:common.label.name"></label> <input type="text" id="node-input-name" data-i18n="[placeholder]node-red:common.label.name"> </div> </script> <script type="text/javascript"> RED.nodes.registerType('exif',{ category: 'utility', color:"#f1c2f0", defaults: { name: {value:""}, mode: {value:"normal"}, property: {value:"payload",required:true} }, inputs:1, outputs:1, icon: "watch.png", label: function() { return this.name||"exif"; }, labelStyle: function() { return this.name?"node_label_italic":""; }, oneditprepare: function() { if (this.property === undefined) { $("#node-input-property").val("payload"); } $("#node-input-property").typedInput({default:'msg',types:['msg']}); $("#node-input-mode").change(function() { if ($("#node-input-mode").val() === "worldmap") { $("#node-exif-prop-select").hide(); } else { $("#node-exif-prop-select").show(); } }); } }); </script>