Skip to content

Instantly share code, notes, and snippets.

@cebe
Created November 24, 2022 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cebe/4c9bdf40f524e3b2556eedb1782c11df to your computer and use it in GitHub Desktop.
Save cebe/4c9bdf40f524e3b2556eedb1782c11df to your computer and use it in GitHub Desktop.
<?php
// add a spinner to the upload button when it is clicked
$this->registerJs(<<<JS
$('#import-form').on('beforeSubmit', function() {
var button = $(this).find('#import-submit-button');
button.prop('disabled', true);
button.append(' <i class="fa fa-spinner fa-spin"></i>');
});
JS
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment