bidict/assets/custom.js

37 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-02-04 01:00:29 +00:00
'use strict';
2019-02-23 07:56:18 +00:00
document.addEventListener('DOMContentLoaded', function () {
2019-02-04 01:00:29 +00:00
var sidebar = document.getElementsByClassName('sphinxsidebarwrapper')[0];
2019-02-23 07:56:18 +00:00
(function tweakSidebar() { try {
var donateH3 = sidebar.querySelector('.donation');
donateH3.textContent = 'Giving back';
var tideliftP = donateH3.nextElementSibling.nextElementSibling;
var givebackA = document.createElement('a');
givebackA.href = 'https://gumroad.com/l/bidict';
givebackA.textContent = 'Bidict is the product of hundreds of hours of unpaid, voluntary work. If bidict has helped you accomplish your work, click here to chip in toward the costs of bidicts maintenance and development.'
sidebar.insertBefore(givebackA, tideliftP);
var tideliftH3 = document.createElement('h3');
tideliftH3.textContent = 'Get Support';
sidebar.insertBefore(tideliftH3, tideliftP);
} catch (e) {}
})();
2019-02-23 07:56:18 +00:00
function addDiv(propName, propVal) {
var div = document.createElement('div');
div.style.marginTop = '20px';
div[propName] = propVal;
sidebar.append(div);
}
function addScript(src) {
var script = document.createElement('script');
script.src = src;
script.async = true;
document.body.append(script);
}
addDiv('className', 'rc-scout');
addScript('https://www.recurse-scout.com/loader.js?t=c17a917136a40c38f5ce6b80adbbfd19');
});