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:
Remove jquery_ujs from application.js
2f49349
to resolve 'Uncaught Error: If you load both jquery_ujs and rails-ujs, use rails-ujs only.' in the dev console part of #4666
52ba27f
[#4666] Remove jquery_ujs from application.js
3147a31
Merge pull request #4723 from pulibrary/partOf-4666-jquery_ujs
691e587
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: