summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/modules/sharedaddy/sharing.js')
-rw-r--r--plugins/jetpack/modules/sharedaddy/sharing.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/jetpack/modules/sharedaddy/sharing.js b/plugins/jetpack/modules/sharedaddy/sharing.js
index 1c1d6aa0..96a26b4b 100644
--- a/plugins/jetpack/modules/sharedaddy/sharing.js
+++ b/plugins/jetpack/modules/sharedaddy/sharing.js
@@ -1,4 +1,5 @@
/* global WPCOM_sharing_counts, grecaptcha */
+/* jshint unused:false */
var sharing_js_options;
if ( sharing_js_options && sharing_js_options.counts ) {
var WPCOMSharing = {
@@ -20,7 +21,7 @@ if ( sharing_js_options && sharing_js_options.counts ) {
requests = {
// LinkedIn actually gets the share count for both the http and https version automatically -- so we don't need to do extra magic
linkedin: [
- 'https://www.linkedin.com/countserv/count/share?format=jsonp&callback=WPCOMSharing.update_linkedin_count&url=' +
+ 'https://www.linkedin.com/countserv/count/share?format=jsonp&callback=updateLinkedInCount&url=' +
encodeURIComponent( url )
],
// Pinterest, like LinkedIn, handles share counts for both http and https
@@ -114,6 +115,10 @@ if ( sharing_js_options && sharing_js_options.counts ) {
};
}
+var updateLinkedInCount = function( data ) {
+ WPCOMSharing.update_linkedin_count( data );
+};
+
(function($){
var $body, $sharing_email;