Remove trailing commas in line.js

This commit is contained in:
Ryan Huffman 2015-10-26 10:46:36 -07:00
parent 6b9b4d4e6e
commit d6230fbed3

View file

@ -26,7 +26,7 @@ var PolyLine = function(position, color, defaultStrokeWidth) {
strokeWidths: this.strokeWidths,
dimensions: LINE_DIMENSIONS,
color: color,
lifetime: 20,
lifetime: 20
});
};
@ -43,7 +43,7 @@ PolyLine.prototype.enqueuePoint = function(position) {
Entities.editEntity(this.entityID, {
linePoints: this.points,
normals: this.normals,
strokeWidths: this.strokeWidths,
strokeWidths: this.strokeWidths
});
};
@ -60,7 +60,7 @@ PolyLine.prototype.dequeuePoint = function() {
Entities.editEntity(this.entityID, {
linePoints: this.points,
normals: this.normals,
strokeWidths: this.strokeWidths,
strokeWidths: this.strokeWidths
});
};