Merge pull request #5260 from stuwil/fix-5259

Generate Post social share links with relative URL
v1.18.x
Barış Soner Uşaklı 8 years ago committed by GitHub
commit d468b6c466

@ -1,6 +1,6 @@
'use strict';
/* globals define */
/* globals define, config */
define('share', function () {
@ -11,7 +11,7 @@ define('share', function () {
var baseUrl = window.location.protocol + '//' + window.location.host;
function openShare(url, urlToPost, width, height) {
window.open(url + encodeURIComponent(baseUrl + urlToPost), '_blank', 'width=' + width + ',height=' + height + ',scrollbars=no,status=no');
window.open(url + encodeURIComponent(baseUrl + config.relative_path + urlToPost), '_blank', 'width=' + width + ',height=' + height + ',scrollbars=no,status=no');
return false;
}

Loading…
Cancel
Save