...
|
...
|
@@ -29,8 +29,12 @@ function highlightMainItem() { |
|
|
var $mainItem = $('.filter-body .classify');
|
|
|
|
|
|
$mainItem.on('touchstart', '.shower', function() {
|
|
|
var bpIdData = $(this).attr('data-bp-id') || '';
|
|
|
|
|
|
$mainItem.removeClass('highlight');
|
|
|
$(this).addClass('highlight');
|
|
|
|
|
|
$(document).trigger('shouldSendBpData', [bpIdData]);
|
|
|
}).on('touchend touchcancel', '.shower', function() {
|
|
|
$(this).removeClass('highlight');
|
|
|
});
|
...
|
...
|
|