timerStop

timerStop

Event fires when a timer starts counting.

timerStop:[name]

Event fires when the timer of name stops counting.

ad.on("timerStop", function() {
  //run when a timer stops
});

ad.on("timerStop:myTimer", function() {
  //run when the timer called 'myTimer' stops
});