From 85368c88654b3cbe756bc564a8fc2dad98116348 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 10 May 2010 12:45:30 +0800 Subject: [PATCH] builder.html.js --- builder.html.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/builder.html.js b/builder.html.js index 703b202fb..d88aa412b 100644 --- a/builder.html.js +++ b/builder.html.js @@ -215,13 +215,13 @@ Builder = { var xi = xitems[i]; if (typeof(xi['*prop']) != 'undefined') { - console.log('adding prop' + xi['*prop']); + console.log('adding prop:' + xi['*prop']); var pr = xi['*prop']; this.munge(xi); // if prop is an array - then it's items are really the value.. if (pr.match(/\[\]$/)) { - console.log('adding array?' + pr); + console.log('adding array?:' + pr); pr = pr.replace(/\[\]$/, ''); cfg[pr] = cfg[pr] || []; cfg[pr].push(xi); @@ -232,7 +232,7 @@ Builder = { if (xi.xtype && xi.xtype == 'Array') { cfg[pr] = xi.items; } else { - console.log('setting property' + pr); + console.log('setting property:' + pr); cfg[pr] = xi; } -- 2.39.2