remove // ? comments

This commit is contained in:
Seth Alves 2015-05-20 16:27:28 -07:00
parent 782402b4c8
commit d8beed34d6
3 changed files with 4 additions and 4 deletions

View file

@ -312,7 +312,7 @@
this.indicator[i].position,
this.indicator[i].scale / 2)) {
clickedOnSeat = true;
seat.model = this.entityID; // ??
seat.model = this.entityID;
seat.position = this.indicator[i].position;
seat.rotation = this.indicator[i].orientation;
}

View file

@ -65,7 +65,7 @@
entityList.add([{ id: id, name: name, type: type, url: filename }], function(items) {
var el = items[0].elm;
var id = items[0]._values.id; // ?
var id = items[0]._values.id;
entities[id] = {
id: id,
name: name,
@ -169,7 +169,7 @@
elEntityTable.style.display = "table";
elNoEntitiesMessage.style.display = "none";
for (var i = 0; i < newEntities.length; i++) {
var id = newEntities[i].id; // ?
var id = newEntities[i].id;
addEntity(id, newEntities[i].name, newEntities[i].type, newEntities[i].url);
}
updateSelectedEntities(data.selectedIDs);

View file

@ -358,7 +358,7 @@
var types = {};
for (var i = 0; i < selections.length; i++) {
ids.push(selections[i].id); // ?
ids.push(selections[i].id);
var type = selections[i].properties.type;
if (types[type] === undefined) {
types[type] = 0;