autocomplete + binding in a cloned group with geolocation field works fine when used on the inital post, but after saving the post and then creating another cloned group, autocomplete stops working.
I suspect the problem is #wpbody in mb-geo.js, Location.init() is not getting called anymore.
$('#wpbody').on('clone_completed', function ()
{
Location.init();
});
on a quick quest to find the problem, I tried $(document).on(..) and it seems to work.
I don't have any other clonable groups in my metaboxes, so not sure about further implications (and it's quite late over here).
any better solutions?