Advertisement
nrzmalik

Stop Timer in Articulate Storyline

Oct 15th, 2024
584
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JavaScript 0.18 KB | Source Code | 0 0
  1. function stopTimer() {
  2.     if (typeof window.timerInterval !== 'undefined') {
  3.         clearInterval(window.timerInterval);
  4.         delete window.timerInterval;
  5.     }
  6. }
  7. stopTimer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement