Advertisement
VladislavNechepaev

Untitled

Nov 11th, 2021
721
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const customMenuOption = document.getElementById("lunch_type_Custom menu").cloneNode()
  2.       customMenuOption.innerHTML = "Custom menu"
  3.  
  4. // =============================
  5.  
  6. if (meidoTimeCheck && values.access_week !== "Current week" && officeMeido[values.office] && hasMeidoId) {
  7.           if (!document.getElementById("lunch_type_Custom menu")) lunchTypeSelector.appendChild(customMenuOption)
  8.         } else {
  9.           if (document.getElementById("lunch_type_Custom menu")) document.getElementById("lunch_type_Custom menu").remove()
  10.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement