mastodon-share-button
Version:
Stencil Mastodon share button
29 lines (22 loc) • 1.04 kB
JavaScript
(function(doc){
var scriptElm = doc.scripts[doc.scripts.length - 1];
var warn = ['[mastodon-share-button] Deprecated script, please remove: ' + scriptElm.outerHTML];
warn.push('To improve performance it is recommended to set the differential scripts in the head as follows:')
var parts = scriptElm.src.split('/');
parts.pop();
parts.push('mastodon-share-button');
var url = parts.join('/');
var scriptElm = doc.createElement('script');
scriptElm.setAttribute('type', 'module');
scriptElm.src = url + '/mastodon-share-button.esm.js';
warn.push(scriptElm.outerHTML);
scriptElm.setAttribute('data-stencil-namespace', 'mastodon-share-button');
doc.head.appendChild(scriptElm);
scriptElm = doc.createElement('script');
scriptElm.setAttribute('nomodule', '');
scriptElm.src = url + '/mastodon-share-button.js';
warn.push(scriptElm.outerHTML);
scriptElm.setAttribute('data-stencil-namespace', 'mastodon-share-button');
doc.head.appendChild(scriptElm);
console.warn(warn.join('\n'));
})(document);