Cross platform (inc. Cordova) social sharing for facebook, twitter, pinterest
[none]
In a Meteor app directory:
meteor add lukemadera:social-share
{{> lmSocialShare opts=opts}}
if(Meteor.isClient) {
Template.socialShareBasic.helpers({
opts: function() {
var opts ={
facebook: true,
twitter: true,
pinterest: false,
shareData: {
url: 'http://google.com'
}
};
return opts;
}
});
}
Then style as needed with the lm-social-share-btn
and lm-social-share-facebook
, lm-social-share-twitter
, lm-social-share-pinterest
classes.