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>'));
}
}