mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-03 22:53:10 +02:00
Remove trailing commas in line.js
This commit is contained in:
parent
6b9b4d4e6e
commit
d6230fbed3
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
});
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue