Files
nairobi/app/views/admin/poll/questions/answers/images/destroy.js.erb
Senén Rodero Rodríguez b499c0dcdd Solve bindmethod deprecation warning
As mentioned at the jQuery 3.0 upgrade guide [1] the `bind` method is deprecated. Replace with `on` method.

[1] https://jquery.com/upgrade-guide/3.0/#deprecated-bind-and-delegate
2020-08-28 16:10:31 +02:00

4 lines
86 B
Plaintext

$(".delete").on("ajax:success", function () {
$(this).closest("div").fadeOut();
});