Ignore 'type' when detecting config nodes

pull/576/head
Nick O'Leary 2015-03-04 22:38:53 +00:00
parent 444a897410
commit 10b092a9a7
1 changed files with 1 additions and 0 deletions

View File

@ -321,6 +321,7 @@ Flow.prototype.parseConfig = function(config) {
}
for (var prop in nodeConfig) {
if (nodeConfig.hasOwnProperty(prop) &&
prop != "type" &&
prop != "id" &&
prop != "z" &&
prop != "wires" &&