October 14, 2020
Bush PDF Fixes
- manual work, finding, fixing
- deleting delete markers
AWS Script to check all the delete markers
const allLineItems = document.querySelectorAll('a.list-view-item-name');
let deleteMarkers = [];
allLineItems.forEach(element => {
if (element.textContent.includes('Delete')) {
deleteMarkers.push(element.parentElement.parentElement.children[0].children[0].children[0].children[0]);
}
});
console.log(deleteMarkers);
deleteMarkers.forEach(m => {
m.click();
})
VNTR SG Fixed button on mobile
ios needs 100% instead of 100vh to deal with nav bar covering up your fixed items
https://github.com/FrDH/mmenu-js/issues/837