...
|
...
|
@@ -17,12 +17,12 @@ function docTouchEvt(e) { |
|
|
$('.opt-panel:not(.hide)').addClass('hide');
|
|
|
|
|
|
//
|
|
|
$(document).unbind('touchstart', docTouchEvt);
|
|
|
$(document).unbind('tap', docTouchEvt);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
// function unbindDocTouchEvt(e) {
|
|
|
// $(document).unbind('touchstart', docTouchEvt);
|
|
|
// $(document).unbind('tap', docTouchEvt);
|
|
|
// }
|
|
|
|
|
|
ellipsis.init();
|
...
|
...
|
@@ -32,7 +32,7 @@ lazyLoad($('.lazy')); |
|
|
$('.name')[0].mlellipsis(2);
|
|
|
|
|
|
//TIP:事件委托在.cart-goods,商品列表的容器统一需要有.cart-goods
|
|
|
$('.cart-goods').delegate('.checkbox', 'touchstart', function() {
|
|
|
$('.cart-goods').delegate('.checkbox', 'tap', function() {
|
|
|
var $this = $(this);
|
|
|
|
|
|
if ($this.hasClass('icon-cb-checked')) {
|
...
|
...
|
@@ -40,7 +40,7 @@ $('.cart-goods').delegate('.checkbox', 'touchstart', function() { |
|
|
} else {
|
|
|
$this.removeClass('icon-checkbox').addClass('icon-cb-checked');
|
|
|
}
|
|
|
}).delegate('.icon-edit', 'touchstart', function() {
|
|
|
}).delegate('.icon-edit', 'tap', function() {
|
|
|
var id = $(this).closest('.shopping-cart-good').data('id');
|
|
|
|
|
|
$.ajax({
|
...
|
...
|
@@ -55,13 +55,13 @@ $('.cart-goods').delegate('.checkbox', 'touchstart', function() { |
|
|
}
|
|
|
}
|
|
|
});
|
|
|
}).delegate('.icon-del', 'touchstart', function(e) {
|
|
|
}).delegate('.icon-del', 'tap', function(e) {
|
|
|
e.stopPropagation();
|
|
|
|
|
|
$(this).closest('.shopping-cart-good').children('.opt-panel').removeClass('hide');
|
|
|
|
|
|
$(document).bind('touchstart', docTouchEvt);
|
|
|
}).delegate('.opt-panel', 'touchstart', function() {
|
|
|
$(document).bind('tap', docTouchEvt);
|
|
|
}).delegate('.opt-panel', 'tap', function() {
|
|
|
var $this = $(this),
|
|
|
id = $this.closest('.shopping-cart-good').data('id');
|
|
|
|
...
|
...
|
|