Skip to content

Latest commit

 

History

History
11 lines (11 loc) · 250 Bytes

pause-while-typing-timer.md

File metadata and controls

11 lines (11 loc) · 250 Bytes
if (saveTimer !== null) {
  clearTimeout(saveTimer);
}
const tmpSaveTimer = setTimeout(() => {
  if (mediaRef && mediaRef.current) {
    mediaRef.current.play();
  }
}, PAUSE_WHILTE_TYPING_TIMEOUT_MILLISECONDS);
setSaveTimer(tmpSaveTimer);