@@ -143,9 +143,9 @@ Share = (function(_super) {
143
143
protocol : [ 'http' , 'https' ] . indexOf ( window . location . href . split ( ':' ) [ 0 ] ) === - 1 ? 'https://' : '//' ,
144
144
url : window . location . href ,
145
145
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 ,
147
147
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' ) : '' ,
149
149
ui : {
150
150
flyout : 'top center' ,
151
151
button_font : true ,
@@ -162,7 +162,7 @@ Share = (function(_super) {
162
162
twitter : {
163
163
enabled : true ,
164
164
url : null ,
165
- text : null
165
+ description : null
166
166
} ,
167
167
facebook : {
168
168
enabled : true ,
@@ -172,7 +172,6 @@ Share = (function(_super) {
172
172
title : null ,
173
173
caption : null ,
174
174
description : null ,
175
- text : null ,
176
175
image : null
177
176
} ,
178
177
pinterest : {
@@ -183,8 +182,8 @@ Share = (function(_super) {
183
182
} ,
184
183
email : {
185
184
enabled : true ,
186
- subject : null ,
187
- body : null
185
+ title : null ,
186
+ description : null
188
187
}
189
188
}
190
189
} ;
@@ -313,7 +312,7 @@ Share = (function(_super) {
313
312
314
313
Share . prototype . network_twitter = function ( ) {
315
314
return this . popup ( 'https://twitter.com/intent/tweet' , {
316
- text : this . config . networks . twitter . text ,
315
+ text : this . config . networks . twitter . description ,
317
316
url : this . config . networks . twitter . url
318
317
} ) ;
319
318
} ;
@@ -334,8 +333,8 @@ Share = (function(_super) {
334
333
335
334
Share . prototype . network_email = function ( ) {
336
335
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
339
338
} ) ;
340
339
} ;
341
340
@@ -433,8 +432,8 @@ Share = (function(_super) {
433
432
if ( ! this . config . networks . facebook . app_id ) {
434
433
this . config . networks . facebook . load_sdk = false ;
435
434
}
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 ) ;
438
437
}
439
438
if ( typeof this . config . networks . facebook . app_id === 'integer' ) {
440
439
return this . config . networks . facebook . app_id = this . config . networks . facebook . app_id . toString ( ) ;
0 commit comments