From 7449821a9bb075f40883e2e3977bd7cc547add59 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Mon, 8 Dec 2014 15:06:50 -0800 Subject: [PATCH] add ID to the properties dialog box --- examples/libraries/entityPropertyDialogBox.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/libraries/entityPropertyDialogBox.js b/examples/libraries/entityPropertyDialogBox.js index a162697560..a686ebb0f2 100644 --- a/examples/libraries/entityPropertyDialogBox.js +++ b/examples/libraries/entityPropertyDialogBox.js @@ -41,6 +41,8 @@ EntityPropertyDialogBox = (function () { array.push({ label: "Entity Type:" + properties.type, type: "header" }); index++; + array.push({ label: "ID:", value: properties.id }); + index++; array.push({ label: "Locked:", type: "checkbox", value: properties.locked }); index++; @@ -265,6 +267,7 @@ EntityPropertyDialogBox = (function () { var properties = propertiesForEditedEntity; var index = 0; index++; // skip type header + index++; // skip id item properties.locked = array[index++].value; if (properties.type == "Model") { properties.modelURL = array[index++].value;