Fix incorrect merge of #373

This commit is contained in:
Vladimir Agafonkin 2012-01-25 10:58:08 +02:00
parent edb7d25921
commit a485d668db

View File

@ -5,7 +5,7 @@
L.Path.include({
bindPopup: function (content, options) {
if (!this._popup || this._popup.options !== options) {
this._popup = new L.Popup(options);
this._popup = new L.Popup(options, this);
}
this._popup.setContent(content);