Currently it is impossible to reuse an existing popup in marker but only create a new one. Sample code: ``` javascript var m = L.marker([12, 45]); var p = L.popup(); m.bindPopup(p); ```