mirror of
https://gitlab.com/octtspacc/OcttKB
synced 2025-02-03 16:07:37 +01:00
12 lines
311 B
JavaScript
12 lines
311 B
JavaScript
|
javascript:(
|
||
|
function () {
|
||
|
if (!document.getElementById('eruda-main')) {
|
||
|
var elem = document.createElement('script');
|
||
|
elem.id = 'eruda-main';
|
||
|
elem.src = 'https://cdn.jsdelivr.net/npm/eruda';
|
||
|
document.body.appendChild(elem);
|
||
|
elem.onload = function () {
|
||
|
eruda.init();
|
||
|
};
|
||
|
};
|
||
|
})();
|