"use strict"; /* TODO: insert a reset button into search form TODO: style menubar and keep it sticky on the window TODO: style/move the location scan to float with the RO TODO: implement facebook-style notifications */ // Warranty Highlight const isWarranty = document.getElementById("chkWarrantee"); isWarranty.addEventListener("change", updateBackground); updateBackground(); function updateBackground() { isWarranty.nextElementSibling.style.backgroundColor = isWarranty.checked ? "red" : "transparent"; isWarranty.nextElementSibling.style.color = isWarranty.checked ? "white" : "black"; } // Notification system // https://portal.trgrepair.com/task_manager.asp?rnd=0.9996227368620352 const notifCountStr = document.getElementById("lblTask").innerText; const notifCount = parseInt(notifCountStr.split(" ")[2]); // Total task count const notifCountNew = parseInt(notifCountStr.split(" ")[5].slice(1)); // New task count // Insert notification button const insertButton = document.getElementById("exitBtn"); insertButton.innerHTML = `
notifications${notifCountNew}
`;