Skip to content

Commit

Permalink
Merge pull request Leaflet#621 from djomp/patch-1
Browse files Browse the repository at this point in the history
Fix for passing jake jshint Leaflet#617
  • Loading branch information
mourner committed Apr 3, 2012
2 parents 926ac5d + ecec332 commit 378a333
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/layer/vector/Circle.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ L.Circle = L.Path.extend({
},

_checkIfEmpty: function () {
if(!this._map) return false;
if (!this._map) {
return false;
}
var vp = this._map._pathViewport,
r = this._radius,
p = this._point;
Expand Down

0 comments on commit 378a333

Please sign in to comment.