Skip to content

Commit

Permalink
fix(visualize): Fixes tileResolutionRatio attribute
Browse files Browse the repository at this point in the history
Fixes #251
  • Loading branch information
atruskie committed Feb 15, 2016
1 parent 63c7363 commit e35d105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/d3Bindings/eventDistribution/distributionDetail.js
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ angular
return visibleTiles[0].resolution;
}
},
tileResolutionRatio: () => () => {
tileResolutionRatio: () => {
if (visibleTiles.length > 0) {
return (visibleTiles[0].resolution / self.resolution).toFixed(4);
}
Expand Down

0 comments on commit e35d105

Please sign in to comment.