'use strict'; /* globals define */ define(function() { var module = {}; module.addShareHandlers = function(name) { var baseUrl = window.location.protocol + '//' + window.location.host + window.location.pathname; function openShare(url, hash, width, height) { window.open(url + encodeURIComponent(baseUrl + 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'); postLink.val(baseUrl + 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; });