...
|
...
|
@@ -68,7 +68,7 @@ function toggleAll(obj, roleType) { |
|
|
var $t = $(this);
|
|
|
var poolId = $t.data('pool-id');
|
|
|
|
|
|
if ($t.find('[data-role=cart-item-check]').is(':hidden')) {
|
|
|
if ($t.find('.pay-pro').hasClass('is-check')) {
|
|
|
return true;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -230,7 +230,7 @@ Cart = { |
|
|
var $item = $chk.closest('[data-role=pitem]');
|
|
|
var poolId = $item.data('pool-id');
|
|
|
|
|
|
if (!$chk.hasClass('cart-item-checked') || $chk.is(':hidden')) {
|
|
|
if (!$chk.hasClass('cart-item-checked') || $chk.find('.pay-pro').hasClass('is-check')) {
|
|
|
return true;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -286,7 +286,7 @@ Cart = { |
|
|
var $item = $(this);
|
|
|
var poolId = $item.data('pool-id');
|
|
|
|
|
|
if ($item.find('[data-role=cart-item-check]').is(':hidden')) {
|
|
|
if ($item.find('.pay-pro').hasClass('is-check')) {
|
|
|
return true;
|
|
|
}
|
|
|
|
...
|
...
|
|