mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Tidy up typedInput syntax
This commit is contained in:
parent
5f8804c25c
commit
3d398cfd53
@ -356,13 +356,13 @@ RED.editor = (function() {
|
|||||||
function attachPropertyChangeHandler(node,definition,property,prefix) {
|
function attachPropertyChangeHandler(node,definition,property,prefix) {
|
||||||
var input = $("#"+prefix+"-"+property);
|
var input = $("#"+prefix+"-"+property);
|
||||||
if (definition !== undefined && "format" in definition[property] && definition[property].format !== "" && input[0].nodeName === "DIV") {
|
if (definition !== undefined && "format" in definition[property] && definition[property].format !== "" && input[0].nodeName === "DIV") {
|
||||||
$("#"+prefix+"-"+property).on('change keyup', function(event,) {
|
$("#"+prefix+"-"+property).on('change keyup', function(event) {
|
||||||
if (!$(this).attr("skipValidation")) {
|
if (!$(this).attr("skipValidation")) {
|
||||||
validateNodeEditor(node,prefix);
|
validateNodeEditor(node,prefix);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
$("#"+prefix+"-"+property).on("change", function(event,skipValidation) {
|
$("#"+prefix+"-"+property).on("change", function(event) {
|
||||||
if (!$(this).attr("skipValidation")) {
|
if (!$(this).attr("skipValidation")) {
|
||||||
validateNodeEditor(node,prefix);
|
validateNodeEditor(node,prefix);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user