...
|
...
|
@@ -664,19 +664,15 @@ $listNav.bind('contextmenu', function(e) { |
|
|
});
|
|
|
|
|
|
$newList.on('touchstart', 'li', function(e) {
|
|
|
var navType, bpIdData = $(this).attr('data-bp-id') || '',
|
|
|
cls = '';
|
|
|
var navType, bpIdData = $(this).attr('data-bp-id') || '';
|
|
|
|
|
|
e.preventDefault();
|
|
|
if ($(this).hasClass('new')) {
|
|
|
navType = 'newest';
|
|
|
cls = 'new';
|
|
|
} else if ($(this).hasClass('default')) {
|
|
|
navType = 'default';
|
|
|
cls = 'default';
|
|
|
} else if ($(this).hasClass('sale')) {
|
|
|
navType = 'sale';
|
|
|
cls = 'sale';
|
|
|
}
|
|
|
|
|
|
$(document).trigger('shouldSendBpData', [bpIdData]);
|
...
|
...
|
@@ -699,11 +695,6 @@ $newList.on('touchstart', 'li', function(e) { |
|
|
|
|
|
case 'default':
|
|
|
$defaultgc.removeClass('hide');
|
|
|
break;
|
|
|
|
|
|
case 'sale':
|
|
|
$sgc.removeClass('hide');
|
|
|
break;
|
|
|
default:
|
|
|
break;
|
|
|
}
|
...
|
...
|
|