Last active
August 29, 2015 14:01
-
-
Save MioGreen/fa1fef5d73fecfe23fa7 to your computer and use it in GitHub Desktop.
Facebook browser sharing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.shareOnFb = function(message, photos, htmlPresentation, socialOptions, observer) { | |
new FacebookShareStrategy(socialOptions, $http) | |
.share(message, photos, htmlPresentation) | |
.then(function(){ | |
observer.onSharedViaFb(); | |
}); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment