...
|
...
|
@@ -16,6 +16,7 @@ var $addressForm = $('.edit-address'), |
|
|
$footer = $('#yoho-footer'),
|
|
|
$backBtn = $('.nav-back'),
|
|
|
$navTitle = $('.nav-title'),
|
|
|
$input = $('input, textarea'),
|
|
|
navTitle = $navTitle.html(),
|
|
|
$area = $('.area'),
|
|
|
isSubmiting,
|
...
|
...
|
@@ -101,6 +102,7 @@ $addressForm.on('submit', function() { |
|
|
});
|
|
|
|
|
|
$submit.on('touchend', function() {
|
|
|
$input.blur();
|
|
|
$addressForm.submit();
|
|
|
return false;
|
|
|
}).on('touchstart', function() {
|
...
|
...
|
@@ -109,7 +111,7 @@ $submit.on('touchend', function() { |
|
|
$(this).removeClass('highlight');
|
|
|
});
|
|
|
|
|
|
$('input, textarea').on('focus', function() {
|
|
|
$input.on('focus', function() {
|
|
|
$footer.hide();
|
|
|
}).on('blur', function() {
|
|
|
$footer.show();
|
...
|
...
|
|