first commit
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
(function(){
|
||||
var header = document.querySelector('header');
|
||||
if (!header) return JSON.stringify({header: "not found"});
|
||||
return JSON.stringify({
|
||||
className: header.className,
|
||||
innerHTML: header.innerHTML.substring(0, 500)
|
||||
});
|
||||
})()
|
||||
Reference in New Issue
Block a user