Authored by 郭成尧

category-pop

... ... @@ -59,8 +59,8 @@ $categoryContainer.on('touchend', function(e) {
$cur = $this.closest('.p-level-item');
//第一次单击右则空白处,出现冒泡
if ($(e.target).closest('.sub-level').length <=0) {
// 第一次单击右则空白处,出现冒泡
if ($(e.target).closest('.sub-level').length <= 0) {
e.preventDefault();
}
... ...
... ... @@ -13,7 +13,7 @@ var $allProductCell = $('.allproduct'),
require('../common');
//初始化container高度
// 初始化container高度
(function() {
var $header = $('.yoho-header');
var h = $(window).height() - $header.outerHeight() - $allProductCell.outerHeight();
... ... @@ -34,8 +34,8 @@ $categoryContainer.on('touchend', function(e) {
$cur = $this.closest('.p-level-item');
//第一次单击右则空白处,出现冒泡
if ($(e.target).closest('.sub-level').length <=0) {
// 第一次单击右则空白处,出现冒泡
if ($(e.target).closest('.sub-level').length <= 0) {
e.preventDefault();
}
... ... @@ -70,4 +70,4 @@ $allProductCell.on('touchstart', function() {
$(this).addClass('highlight');
}).on('touchend touchcancel', function() {
$(this).removeClass('highlight');
});
\ No newline at end of file
});
... ...