Difference between revisions of "Committees"

From QIBA Wiki
Jump to navigation Jump to search
Line 54: Line 54:
  
 
==MR Committees==
 
==MR Committees==
.dropbtn {
+
/* When the user clicks on the button,
     background-color: #3498DB;
+
toggle between hiding and showing the dropdown content */
     color: white;
+
function myFunction() {
     padding: 16px;
+
    document.getElementById("myDropdown").classList.toggle("show");
    font-size: 16px;
+
}
    border: none;
+
 
     cursor: pointer;
+
// 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:05, 8 August 2018

QIBA Committee Organization Chart July 2018

  • Airway Measurement TF



  • Profile Compliance TF
  • FDG-PET UPICT TF
  • System Dependencies/Phantom Testing TF
  • Clinical Applications TF
  • System Dependencies/Phantom Testing/Clinical Validation

See Also

MR Committees

/* When the user clicks on the button, toggle between hiding and showing the dropdown content */ 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');
     }
   }
 }

}