...
|
...
|
@@ -10,14 +10,29 @@ var $ = require('yoho.zepto'), |
|
|
|
|
|
var chosePanel = require('./chose-panel');
|
|
|
|
|
|
function docTouchEvt(e) {
|
|
|
var $tar = $(e.target);
|
|
|
|
|
|
if ($tar.closest('.opt-panel').length === 0) {
|
|
|
$('.opt-panel:not(.hide)').addClass('hide');
|
|
|
|
|
|
//
|
|
|
$(document).unbind('touchstart', docTouchEvt);
|
|
|
}
|
|
|
}
|
|
|
|
|
|
// function unbindDocTouchEvt(e) {
|
|
|
// $(document).unbind('touchstart', docTouchEvt);
|
|
|
// }
|
|
|
|
|
|
ellipsis.init();
|
|
|
|
|
|
lazyLoad($('.lazy'));
|
|
|
|
|
|
$('.name')[0].mlellipsis(2);
|
|
|
|
|
|
//checkbox toggle status
|
|
|
$('.checkbox').bind('touchstart', function() {
|
|
|
//TIP:事件委托在.cart-goods,商品列表的容器统一需要有.cart-goods
|
|
|
$('.cart-goods').delegate('.checkbox', 'touchstart', function() {
|
|
|
var $this = $(this);
|
|
|
|
|
|
if ($this.hasClass('icon-cb-checked')) {
|
...
|
...
|
@@ -25,9 +40,7 @@ $('.checkbox').bind('touchstart', function() { |
|
|
} else {
|
|
|
$this.removeClass('icon-checkbox').addClass('icon-cb-checked');
|
|
|
}
|
|
|
});
|
|
|
|
|
|
$('.icon-edit').bind('touchstart', function() {
|
|
|
}).delegate('.icon-edit', 'touchstart', function() {
|
|
|
var id = $(this).closest('.shopping-cart-good').data('id');
|
|
|
|
|
|
$.ajax({
|
...
|
...
|
@@ -42,5 +55,9 @@ $('.icon-edit').bind('touchstart', function() { |
|
|
}
|
|
|
}
|
|
|
});
|
|
|
}).delegate('.icon-del', 'touchstart', function() {
|
|
|
$(this).closest('.shopping-cart-good').children('.opt-panel').removeClass('hide');
|
|
|
|
|
|
$(document).bind('touchstart', docTouchEvt);
|
|
|
});
|
|
|
|
...
|
...
|
|