Authored by 梁志锋

加入购物车改成touchstart事件

... ... @@ -11,7 +11,7 @@ var $ = require('jquery'),
var productId = $('#productId').val();
$('#likeBtn').on('click', function() {
$('#likeBtn').on('touchstart', function() {
var opt,
favorite;
... ... @@ -63,7 +63,7 @@ $('#likeBtn').on('click', function() {
return false;
});
$('#addtoCart').on('click', function() {
$('#addtoCart').on('touchstart', function() {
chosePanel.show();
//统计代码:用于统计用户加入购物车的动作
... ...