...
|
...
|
@@ -360,7 +360,7 @@ var YohoListPage = { |
|
|
},
|
|
|
filterBrand: function(letter) {
|
|
|
$('.yoho-product-list .brand-list .input-radio').each(function() {
|
|
|
var first = $(this).data('word').toString(); // eslint-disable-line
|
|
|
var first = $(this).data('word').toString(); // eslint-disable-line
|
|
|
var name = $(this).find('label').text().toLowerCase();
|
|
|
|
|
|
first = first.toLowerCase();
|
...
|
...
|
@@ -406,14 +406,14 @@ var YohoListPage = { |
|
|
url = $(e.currentTarget).data('url');
|
|
|
|
|
|
YohoListPage.productId = productId;
|
|
|
pos.top = position.top + 10;
|
|
|
pos.top = position.top + 18;
|
|
|
|
|
|
if (position.left > 500) {
|
|
|
pos.right = 0;
|
|
|
pos.left = 'auto';
|
|
|
} else {
|
|
|
pos.right = 'auto';
|
|
|
pos.left = position.left;
|
|
|
pos.left = position.left-12;
|
|
|
}
|
|
|
|
|
|
$(this.goodsWrapper).css(pos);
|
...
|
...
|
|