]> git.openstreetmap.org Git - rails.git/blob - app/assets/javascripts/social_share_button.js
Merge pull request #5388 from AntonKhorev/map-layer-can-embed
[rails.git] / app / assets / javascripts / social_share_button.js
1 function openShareUrl(url, initialWidth = 640, initialHeight = 480) {
2   const width = Math.max(100, Math.min(screen.width, initialWidth));
3   const height = Math.max(100, Math.min(screen.height, initialHeight));
4
5   const left = (screen.width / 2) - (width / 2);
6   const top = (screen.height * 0.3) - (height / 2);
7   const opts = `width=${width},height=${height},left=${left},top=${top},menubar=no,status=no,location=no`;
8
9   window.open(url, "popup", opts);
10 }
11
12 $(document).ready(function () {
13   $(".ssb-icon").on("click", function (e) {
14     const shareUrl = $(this).attr("href");
15     if (!shareUrl.startsWith("mailto:")) {
16       e.preventDefault();
17       openShareUrl(shareUrl);
18     }
19   });
20 });
21