Authored by 毕凯

Merge branch 'hotfix/seckillClick' into 'master'

重复绑定click事件



See merge request !259
... ... @@ -808,17 +808,10 @@ $yohoPage.on('touchstart', '.btn-minus', function() {
});
} else {
$('#chose-btn-sure').click(
function() {
var thisSkn = $('#productSkn').val();
var thisSku = '';
thisSku = $('.size-list').find('.chosed').attr('data-skuid');
window.location.href = '/cart/index/seckill?skn=' + thisSkn + '&sku=' + thisSku;
}
);
var thisSkn = $('#productSkn').val();
var thisSku = '';
thisSku = $('.size-list').find('.chosed').attr('data-skuid');
window.location.href = '/cart/index/seckill?skn=' + thisSkn + '&sku=' + thisSku;
}
}
... ...