FIX increased delay for save button reactivation from 3000ms to 10000ms
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
f3c6b39607
commit
c41431592b
|
|
@ -94,10 +94,6 @@ add_action('edit_form_after_title', function () {
|
|||
<span class="spinner"></span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<script>
|
||||
jQuery(function($) {
|
||||
|
|
@ -119,7 +115,7 @@ add_action('edit_form_after_title', function () {
|
|||
$button.prop('disabled', false).text('Sauvegarder');
|
||||
$spinner.hide();
|
||||
$spinner.removeClass('is-active');
|
||||
}, 3000);
|
||||
}, 10000);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user