1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix jshint test

This commit is contained in:
Nick O'Leary 2014-09-22 13:22:23 +01:00
parent 9bfc6d376b
commit e48cbafbd6

View File

@ -48,8 +48,10 @@ RED.editor = (function() {
function validateNodeProperties(node, definition, properties) {
var isValid = true;
for (var prop in definition) {
if (!validateNodeProperty(node, definition, prop, properties[prop])) {
isValid = false;
if (definition.hasOwnProperty(prop)) {
if (!validateNodeProperty(node, definition, prop, properties[prop])) {
isValid = false;
}
}
}
return isValid;