profile.js 433 B

123456789101112
  1. /**
  2. * Shows the buttons for all language CVs.
  3. *
  4. * It also hides the normal CV and the 'Other languages' buttons.
  5. */
  6. function showAllCvs(){
  7. document.getElementById('cv_main').style.display = 'none';
  8. document.getElementById('cv_other_langs').style.display = 'none';
  9. var btns = document.getElementsByClassName('cv_lang');
  10. for (var i = 0; i < btns.length; i ++)
  11. btns.item(i).style.display = 'inline-block';
  12. }