...
|
...
|
@@ -407,14 +407,15 @@ $('.dispatch-time').on('touchend', 'li', function() { |
|
|
orderInfo('deliveryTimeId', $(this).data('id'));
|
|
|
});
|
|
|
|
|
|
$('.yoho-coin-help-dialog-bg, .yoho-coin-footer').on('touchend', function(e) {
|
|
|
$('.yoho-coin-help-dialog-bg, .yoho-coin-footer').on('click', function(e) {
|
|
|
e.preventDefault();
|
|
|
$('.yoho-coin-help-dialog-bg').addClass('hide');
|
|
|
$('.yoho-coin-help-dialog').addClass('hide');
|
|
|
});
|
|
|
|
|
|
$('.coin').on('touchend', function(e) {
|
|
|
$('.coin').on('click', function(e) {
|
|
|
var $this = $(this);
|
|
|
e.preventDefault();
|
|
|
|
|
|
if ($(e.target).closest('.yoho-coin-help').length) {
|
|
|
$('.yoho-coin-help-dialog-bg').removeClass('hide');
|
...
|
...
|
|