Revert "Fix setting of offset for popups."

This reverts commit 30d2959c23.
This commit is contained in:
Vladimir Agafonkin 2015-07-01 22:16:36 +03:00
parent 047830f131
commit d48191f426
2 changed files with 1 additions and 38 deletions

View File

@ -1,36 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Leaflet debug page</title>
<link rel="stylesheet" href="../../dist/leaflet.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="../css/screen.css" />
<script type="text/javascript" src="../../build/deps.js"></script>
<script src="../leaflet-include.js"></script>
</head>
<body>
<div id="map"></div>
<script type="text/javascript">
var osmUrl = 'http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png',
osmAttrib = '&copy; <a href="http://openstreetmap.org/copyright">OpenStreetMap</a> contributors',
osm = L.tileLayer(osmUrl, {maxZoom: 18, attribution: osmAttrib});
var map = L.map('map')
.setView([50.5, 30.51], 15)
.addLayer(osm);
L.marker(map.getCenter())
.addTo(map)
.bindPopup('A pretty CSS3 popup. <br> Easily customizable.',{offset:[100,200]})
.openPopup();
</script>
</body>
</html>

View File

@ -127,8 +127,7 @@ L.Layer.include({
_popupAnchor: function (layer) {
var anchor = layer._getPopupAnchor ? layer._getPopupAnchor() : [0, 0];
var offsetToAdd = layer._popup ? layer._popup.options.offset : L.Popup.prototype.options.offset;
return L.point(anchor).add(offsetToAdd);
return L.point(anchor).add(L.Popup.prototype.options.offset);
},
_movePopup: function (e) {