Merge pull request #621 from djomp/patch-1

Fix for passing jake jshint #617
This commit is contained in:
Vladimir Agafonkin 2012-04-03 01:56:39 -07:00
commit 378a3339e6

View File

@ -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;