first commit

This commit is contained in:
2018-04-11 17:57:57 +02:00
commit fdfcfbd2a6
4073 changed files with 501866 additions and 0 deletions
@@ -0,0 +1,18 @@
function lazyload(anchor) {
setTimeout(function () {
// Strip comment tags around innerHTML
anchor.innerHTML = anchor.innerHTML.replace('<!--', '').replace('-->', '');
}, 1000);
// Remove <noscript> tag in element DOM
var elem = anchor.getElementsByTagName('noscript');
if ( elem.length > 0 ) {
elem[0].remove();
}
// Suppress further onClick events
anchor.removeAttribute('href');
anchor.onclick = null;
return false;
}