may88seiji
8/23/2017 - 10:09 AM

カウントダウン http://xirasaya.com/?m=detail&hid=370

bind : function() {
  if($('.js-countDown').length) HERENOWAPP_NEWSDETAIL.countDown('window.location.replace("coupon_used.html")', 60);
},

// カウントダウン
countDown : function($call, $count) {
  $('.js-countDown').text($count);
  if($count) {
    setTimeout(function() {
      $count = $count-1;
      HERENOWAPP_NEWSDETAIL.countDown($call, $count);
    }, 60000);
  }else {
    $('body').append($('<scr'+'ipt>'+$call+';<\/scr'+'ipt>'));
  }
}