omnivore/pkg/extension/src/scripts/cta-popup.js
2022-02-11 09:24:33 -08:00

19 lines
447 B
JavaScript

'use strict';
(function () {
const urlSearch = window.location.search;
const urlMatch = urlSearch.match(/[?&]url=([^&]+)/);
if (!urlMatch) return;
const encodedUrl = urlMatch[1];
if (!encodedUrl) return;
const url = decodeURIComponent(encodedUrl);
const linkEl = document.getElementById('get-omnivore-link');
const loginLinkEl = document.getElementById('omnivore-login');
linkEl.href = url;
loginLinkEl.href = url;
})();