We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In our Ruby on Rails app use the rails-ujs library.
$(document).on("ajax:success", function(event, data, status, xhr) { ... });
use
$(document).on("ajax:success", function(event) { var data = event.detail[0]; var status = event.detail[1]; var xhr = event.detail[2]; ... });
Reference for this ticket: https://dev.to/nejremeslnici/migrating-from-jquery-ujs-to-rails-ujs-k9m
Assigned @christinach to complete writing the rest of the tickets that are in the acceptance criteria.
The text was updated successfully, but these errors were encountered:
christinach
No branches or pull requests
What maintenance needs to be done?
In our Ruby on Rails app use the rails-ujs library.
Level of urgency
EOL upgrade
Why is this maintenance needed?
Acceptance criteria
instead of
use
Implementation notes, if any
Reference for this ticket: https://dev.to/nejremeslnici/migrating-from-jquery-ujs-to-rails-ujs-k9m
Assigned @christinach to complete writing the rest of the tickets that are in the acceptance criteria.
The text was updated successfully, but these errors were encountered: