Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Spinelli committed Sep 13, 2016
1 parent 1f1f92f commit e053076
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/js/src/armyc2/c2sd/renderer/SinglePointRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2326,7 +2326,7 @@ return{
var fillColor = null;
var lineColor = SymbolUtilities.getLineColorOfAffiliation(symbolID).toHexString(false);
var alpha = 1.0;
var lineApha = 1.0;
var lineAlpha = 1.0;
var fillAlpha = 1.0;
var fill = null;
var frame = null;
Expand Down
4 changes: 3 additions & 1 deletion web/js/src/armyc2/c2sd/renderer/SinglePointSVGRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2101,7 +2101,9 @@ return{
var intFrame = -1;
var fillColor = null;
var lineColor = SymbolUtilities.getLineColorOfAffiliation(symbolID).toHexString(false);
var alpha = 1.0;
var alpha = 1.0,
lineAlpha = 1.0,
fillAlpha = 1.0;
var fill = null;
var frame = null;

Expand Down

0 comments on commit e053076

Please sign in to comment.