You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.5 KiB
JavaScript

'use strict';
/* globals define */
define(function() {
var module = {};
module.addShareHandlers = function(name) {
11 years ago
var baseUrl = window.location.protocol + '//' + window.location.host;
function openShare(url, hash, width, height) {
11 years ago
window.open(url + encodeURIComponent(baseUrl + window.location.pathname + hash), '_blank', 'width=' + width + ',height=' + height + ',scrollbars=no,status=no');
return false;
}
$('#content').on('shown.bs.dropdown', '.share-dropdown', function() {
var postLink = $(this).find('.post-link');
11 years ago
postLink.val(baseUrl + window.location.pathname + getPostHash($(this)));
// without the setTimeout can't select the text in the input
setTimeout(function() {
postLink.putCursorAtEnd().select();
}, 50);
});
$('#content').on('click', '.post-link', function(e) {
e.preventDefault();
return false;
});
$('#content').on('click', '.twitter-share', function () {
return openShare('https://twitter.com/intent/tweet?text=' + name + '&url=', getPostHash($(this)), 550, 420);
});
$('#content').on('click', '.facebook-share', function () {
return openShare('https://www.facebook.com/sharer/sharer.php?u=', getPostHash($(this)), 626, 436);
});
$('#content').on('click', '.google-share', function () {
return openShare('https://plus.google.com/share?url=', getPostHash($(this)), 500, 570);
});
};
function getPostHash(clickedElement) {
var pid = clickedElement.parents('.post-row').attr('data-pid');
if (pid) {
return '#' + pid;
}
return '';
}
return module;
});