function showCopySuccess()

in js/code-block-buttons.js [54:59]


  function showCopySuccess(copyButtonTextElement) {
    copyButtonTextElement.textContent = COPY_BUTTON_SUCCESS_TEXT_LABEL;
    setTimeout(function() {
      copyButtonTextElement.textContent = COPY_BUTTON_TEXT_LABEL;
    }, 2000);
  }