Test failed

This commit is contained in:
NikaZhenya 2018-10-04 15:14:46 -05:00
parent 29e351c7ab
commit 2e77715500
2 changed files with 1 additions and 66 deletions

View File

@ -9,16 +9,11 @@ window.onload = function () {
function add_shares (url) {
var section = document.getElementsByTagName('section')[0],
div = document.createElement('div'),
script = document.createElement('script');
div = document.createElement('div');
div.id = 'social';
div.style.cssText = 'margin-top:1em;padding-top:1em;border-top:1px dashed gray;'
div.innerHTML += '<div id="mastodon-share"></div>';
div.innerHTML += '<a href="https://twitter.com/share?ref_src=twsrc%5Etfw" class="twitter-share-button" data-text="See: " data-url="' + url + '" data-via="_perroTuerto" data-hashtags="Publishing" data-lang="en" data-show-count="false">Tweet</a><script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>';
div.innerHTML += '<h3 style="margin:0;color:gray;font-style:normal;">Comments</h3>';
section.appendChild(div);
script.src = '../js/mastodon.js';
section.appendChild(script);
}

View File

@ -1,60 +0,0 @@
// Mastodon Share
// Create of DEADBLACKCLOVER
// License GNU GPL-3
var host = null,
message = null;
var mastodon = document.getElementById("mastodon-share");
mastodon.innerHTML = "<div><button id='mastodon-share-btn' onclick='viewHostMastodon()'></button></div>" +
"<div id='mastodon-share-host' hidden>"+
"<input id='mastodon-share-ipt' type='text' placeholder='Mastodon URL'>"+
"<button id='mastodon-share-share' onclick='getHostMastodon()'>OK</button>"+
"</div>";
var btn = document.getElementById("mastodon-share-btn");
btn.style.width = "120px";
btn.style.height = "30px";
btn.style.backgroundColor = "#282c37";
btn.style.backgroundImage = "url(https://joinmastodon.org/static/media/logo_full.97822390.svg)";
btn.style.backgroundSize = "75% 80%";
btn.style.backgroundRepeat = "no-repeat";
btn.style.backgroundPosition = "50% 50%";
btn.style.color = "#d9e1e8";
btn.style.border = "0";
btn.style.borderRadius = "5px";
var block = document.getElementById("mastodon-share-host");
block.style.marginTop = "5px";
block.style.backgroundColor = "#282c37";
block.style.width = "180px";
block.style.padding = "5px";
block.style.borderRadius = "5px";
var ipt = document.getElementById("mastodon-share-ipt");
ipt.style.width = "110px";
ipt.style.marginRight = "5px";
function getMessageMastodon(mes) {
message = mes;
}
function viewHostMastodon() {
block.hidden = false;
}
function getHostMastodon(){
host = ipt.value;
shareMastodon();
}
function shareMastodon() {
if(host && message){
host = 'https://' + host + '/share?text=' + message;
var newWin = window.open(host, "Mastodon", "width=430,height=320");
}
}