Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Coerce mode to string for d3.geo.azimuthal.
  • Loading branch information
jasondavies committed Aug 27, 2011
1 parent f97c261 commit ba7bb1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion d3.geo.js
Expand Up @@ -41,7 +41,7 @@ d3.geo.azimuthal = function() {

azimuthal.mode = function(x) {
if (!arguments.length) return mode;
mode = x;
mode = x + "";
return azimuthal;
};

Expand Down
2 changes: 1 addition & 1 deletion d3.geo.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/geo/azimuthal.js
Expand Up @@ -40,7 +40,7 @@ d3.geo.azimuthal = function() {

azimuthal.mode = function(x) {
if (!arguments.length) return mode;
mode = x;
mode = x + "";
return azimuthal;
};

Expand Down

0 comments on commit ba7bb1f

Please sign in to comment.