Guest User

Untitled

a guest
Jun 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // function to switch phases mid interval
  2. var switchPhase = function(){
  3.     if (active_timer_is_on === true){
  4.         active_timer_is_on = false;
  5.         rest_timer_is_on   = true;
  6.         return;
  7.     }
  8.    
  9.     if (rest_timer_is_on === true) {
  10.         rest_timer_is_on   = false;
  11.         active_timer_is_on = true;
  12.     }
  13. };
Add Comment
Please, Sign In to add comment