Add bitbucket dotjs script

This commit is contained in:
Jonathan Hodgson 2018-10-04 16:49:00 +01:00
parent 8e42ead28d
commit e6888dc746

View file

@ -0,0 +1,23 @@
((() => {
const domLoaded = function domLoaded(){
document.removeEventListener("readystatechange",domLoaded);
document.querySelectorAll("li").forEach(li => {
console.log(li);
if( li.innerHTML.indexOf( '[' ) !== -1 ){
li.innerHTML = li.innerHTML.replace(/\[ \]/g, '☐');
li.innerHTML = li.innerHTML.replace(/\[x\]/g, '☒');
}
} );
}
console.log("I get here");
if(document.readyState == "loading"){
//If the dom hasn't loaded, wait until it is
document.addEventListener("readystatechange",domLoaded);
return;
} else {
//If it has, run the domLoaded function
domLoaded();
}
}))();