Committees: Difference between revisions

From QIBA Wiki
Jump to navigation Jump to search
Line 52: Line 52:
* [[Committee Template]] - Template for new Committee Wiki Pages
* [[Committee Template]] - Template for new Committee Wiki Pages
* [[Committee Organization]] - Committee Membership and Responsibilities
* [[Committee Organization]] - Committee Membership and Responsibilities
==MR Committees==
function myFunction() {
    document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown menu if the user clicks outside of it
window.onclick = function(event) {
  if (!event.target.matches('.dropbtn')) {
    var dropdowns = document.getElementsByClassName("dropdown-content");
    var i;
    for (i = 0; i < dropdowns.length; i++) {
      var openDropdown = dropdowns[i];
      if (openDropdown.classList.contains('show')) {
        openDropdown.classList.remove('show');
      }
    }
  }
}

Revision as of 18:06, 8 August 2018