Skip to content

Commit 20414cc

Browse files
committed
Fix the setting of email variables
1 parent 516a6af commit 20414cc

File tree

3 files changed

+30
-25
lines changed

3 files changed

+30
-25
lines changed

build/share.js

+10-11
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ Share = (function(_super) {
143143
protocol: ['http', 'https'].indexOf(window.location.href.split(':')[0]) === -1 ? 'https://' : '//',
144144
url: window.location.href,
145145
caption: null,
146-
title: (content = document.querySelector('meta[property="og:title"]') || document.querySelector('meta[name="twitter:title"]')) ? content.getAttribute('content') : void 0,
146+
title: (content = document.querySelector('meta[property="og:title"]') || document.querySelector('meta[name="twitter:title"]')) ? content.getAttribute('content') : (content = document.querySelector('title')) ? content.innerText : void 0,
147147
image: (content = document.querySelector('meta[property="og:image"]') || document.querySelector('meta[name="twitter:image"]')) ? content.getAttribute('content') : void 0,
148-
text: (content = document.querySelector('meta[property="og:description"]') || document.querySelector('meta[name="twitter:description"]') || document.querySelector('meta[name="description"]')) ? content.getAttribute('content') : '',
148+
description: (content = document.querySelector('meta[property="og:description"]') || document.querySelector('meta[name="twitter:description"]') || document.querySelector('meta[name="description"]')) ? content.getAttribute('content') : '',
149149
ui: {
150150
flyout: 'top center',
151151
button_font: true,
@@ -162,7 +162,7 @@ Share = (function(_super) {
162162
twitter: {
163163
enabled: true,
164164
url: null,
165-
text: null
165+
description: null
166166
},
167167
facebook: {
168168
enabled: true,
@@ -172,7 +172,6 @@ Share = (function(_super) {
172172
title: null,
173173
caption: null,
174174
description: null,
175-
text: null,
176175
image: null
177176
},
178177
pinterest: {
@@ -183,8 +182,8 @@ Share = (function(_super) {
183182
},
184183
email: {
185184
enabled: true,
186-
subject: null,
187-
body: null
185+
title: null,
186+
description: null
188187
}
189188
}
190189
};
@@ -313,7 +312,7 @@ Share = (function(_super) {
313312

314313
Share.prototype.network_twitter = function() {
315314
return this.popup('https://twitter.com/intent/tweet', {
316-
text: this.config.networks.twitter.text,
315+
text: this.config.networks.twitter.description,
317316
url: this.config.networks.twitter.url
318317
});
319318
};
@@ -334,8 +333,8 @@ Share = (function(_super) {
334333

335334
Share.prototype.network_email = function() {
336335
return this.popup('mailto:', {
337-
subject: this.config.networks.email.subject,
338-
body: this.config.networks.email.body
336+
subject: this.config.networks.email.title,
337+
body: this.config.networks.email.description
339338
});
340339
};
341340

@@ -433,8 +432,8 @@ Share = (function(_super) {
433432
if (!this.config.networks.facebook.app_id) {
434433
this.config.networks.facebook.load_sdk = false;
435434
}
436-
if (!this.is_encoded(this.config.networks.twitter.text)) {
437-
this.config.networks.twitter.text = encodeURIComponent(this.config.networks.twitter.text);
435+
if (!this.is_encoded(this.config.networks.twitter.description)) {
436+
this.config.networks.twitter.description = encodeURIComponent(this.config.networks.twitter.description);
438437
}
439438
if (typeof this.config.networks.facebook.app_id === 'integer') {
440439
return this.config.networks.facebook.app_id = this.config.networks.facebook.app_id.toString();

0 commit comments

Comments
 (0)