Hi
thanks for your reply but with the upgrade i've lost a customization that you have done... when i try to share by twitter or pinterest i dont't have "Guarda cosa ho visto su MPS Cooking Factor! #mpscooking"
In the old ba-gallery.js you have changed the code below but now i cannot file in the last update:
OLD CODE FOR TWITTER:
galleryModal.find('.ba-twitter-share-button').on('click touchend', function(event){
event.preventDefault();
event.stopPropagation();
var url = '
twitter.com/intent/tweet?url=';
url += encodeURIComponent(window.location.href);
url += '&text='+encodeURIComponent(ba_jQuery('title').text());
window.open(url, 'sharer', 'toolbar=0, status=0, width=626, height=436');
});
NEW CODE FOR TWITTER:
galleryModal.find('.ba-twitter-share-button').on('click touchend', function(event){
event.preventDefault();
event.stopPropagation();
var url = '
twitter.com/intent/tweet?url=';
url += encodeURIComponent(window.location.href);
url += '&text='+encodeURIComponent(jQuery('meta[property="og:title"]').attr('content'));
window.open(url, 'sharer', 'toolbar=0, status=0, width=626, height=436');
});